In [1]:
# import relevant libraries
import numpy as np
import os
import seaborn as sb
import requests
import pandas as pd
import tweepy
from tweepy import OAuthHandler
import json
from timeit import default_timer as timer

import matplotlib.pyplot as plt                                      # to plot graph
plt.rc("font", size=14)
%matplotlib inline
from matplotlib import cm as cm

import seaborn as sns                                                # for intractve graphs
sns.set(style="whitegrid", color_codes=True)

import warnings
warnings.filterwarnings('ignore')

Gathering Data

In [2]:
# load in twitter archive csv
archive_df = pd.read_csv('twitter-archive-enhanced.csv', encoding='utf-8')
archive_df.head(3)
Out[2]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie None None None None
In [3]:
archive_df.shape
Out[3]:
(2356, 17)
In [4]:
# load in image prediction data from udacity servers
url = 'https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
response = requests.get(url)

folder_name = 'image-predictions'
if not os.path.exists(folder_name):
    os.makedirs(folder_name)
    
with open(os.path.join(folder_name, url.split('/')[-1]), mode='wb') as file:
    file.write(response.content)
In [5]:
image_df = pd.read_csv(folder_name + '/image-predictions.tsv', sep='\t')
image_df.head(5)
Out[5]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 0.138584 True bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 0.360687 True miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True
In [6]:
# Query Twitter API for each tweet in the Twitter archive and save JSON in a text file
# These are hidden to comply with Twitter's API terms and conditions
consumer_key = 'XXXXXXX'
consumer_secret = 'XXXXXXX'
access_token = 'XXXXXXX'
access_secret = 'XXXXXXX'
In [7]:
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)

api = tweepy.API(auth, wait_on_rate_limit = True, wait_on_rate_limit_notify = True)
api
Out[7]:
<tweepy.api.API at 0x7f73b181bdd8>
In [8]:
tweet_ids = archive_df.tweet_id.values
len(tweet_ids)
Out[8]:
2356
In [9]:
# Query Twitter's API for JSON data for each tweet ID in the Twitter archive
# api_data = []

# #read the created file
# with open("tweet-json.txt", "r") as f:
#     for line in f:
#         try: 
#             tweet = json.loads(line)
#             #append a dictionary to the created list            
#             api_data.append({
#                 "tweet_id": tweet["id"],
#                 "retweet_count": tweet["retweet_count"],
#                 "favorite_count": tweet["favorite_count"],
#                 "retweeted": tweet["retweeted"],
#                 "display_text_range": tweet["display_text_range"]                
#             })               
                
#             #tweet["entities"]["media"][0]["media_url"]
#         except:
#             print("Error.") 
            
# df_api = pd.DataFrame(api_data, columns = ["tweet_id", "retweet_count", "favorite_count", "retweeted", "display_text_range"])
# df_api.head()
In [10]:
# read this tweet_json.txt file line by line into a pandas DataFrame with (at minimum) 
# tweet ID, retweet count, and favorite count."
df_tweet_json = pd.DataFrame(columns=['tweet_id', 'retweet_count', 'favorite_count'])
with open('tweet-json.txt') as data_file:
    for line in data_file:
        tweet = json.loads(line)
        tweet_id = tweet['id_str']
        retweet_count = tweet['retweet_count']
        favorite_count = tweet['favorite_count']
        df_tweet_json = df_tweet_json.append(pd.DataFrame([[tweet_id, retweet_count, favorite_count]],
        columns=['tweet_id', 'retweet_count', 'favorite_count']))
        df_tweet_json = df_tweet_json.reset_index(drop=True)
In [11]:
df_tweet_json.head()
Out[11]:
tweet_id retweet_count favorite_count
0 892420643555336193 8853 39467
1 892177421306343426 6514 33819
2 891815181378084864 4328 25461
3 891689557279858688 8964 42908
4 891327558926688256 9774 41048

Assess data

archive DF

In [12]:
archive_df.head(20)
Out[12]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin None None None None
5 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None None None None None
6 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax None None None None
7 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None None None None None
8 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey None None None None
9 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie doggo None None None
10 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda None None None None
11 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno None None None None
12 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None None None None puppo
13 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted None None None None
14 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart None None None puppo
15 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver None None None None
16 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim None None None None
17 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke None None None None
18 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus None None None None
19 888202515573088257 NaN NaN 2017-07-21 01:02:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Canela. She attempted s... 8.874740e+17 4.196984e+09 2017-07-19 00:47:34 +0000 https://twitter.com/dog_rates/status/887473957... 13 10 Canela None None None None
In [13]:
archive_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
tweet_id                      2356 non-null int64
in_reply_to_status_id         78 non-null float64
in_reply_to_user_id           78 non-null float64
timestamp                     2356 non-null object
source                        2356 non-null object
text                          2356 non-null object
retweeted_status_id           181 non-null float64
retweeted_status_user_id      181 non-null float64
retweeted_status_timestamp    181 non-null object
expanded_urls                 2297 non-null object
rating_numerator              2356 non-null int64
rating_denominator            2356 non-null int64
name                          2356 non-null object
doggo                         2356 non-null object
floofer                       2356 non-null object
pupper                        2356 non-null object
puppo                         2356 non-null object
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
  • timestamp and retweeted_status_timestamp is an object
In [14]:
# check for duplicates
archive_df[archive_df.duplicated()].sum()
Out[14]:
tweet_id                      0.0
in_reply_to_status_id         0.0
in_reply_to_user_id           0.0
timestamp                     0.0
source                        0.0
text                          0.0
retweeted_status_id           0.0
retweeted_status_user_id      0.0
retweeted_status_timestamp    0.0
expanded_urls                 0.0
rating_numerator              0.0
rating_denominator            0.0
name                          0.0
doggo                         0.0
floofer                       0.0
pupper                        0.0
puppo                         0.0
dtype: float64
In [15]:
# check for missing values 
archive_df.isnull().sum()
Out[15]:
tweet_id                         0
in_reply_to_status_id         2278
in_reply_to_user_id           2278
timestamp                        0
source                           0
text                             0
retweeted_status_id           2175
retweeted_status_user_id      2175
retweeted_status_timestamp    2175
expanded_urls                   59
rating_numerator                 0
rating_denominator               0
name                             0
doggo                            0
floofer                          0
pupper                           0
puppo                            0
dtype: int64
  • there are missing values in in_reply_to_status_id ,in_reply_to_user_id,retweeted_status_id,retweeted_status_user_id,retweeted_status_timestamp columns
In [16]:
pd.set_option('display.max_rows', 2000)
archive_df.name[archive_df.name.str.islower()]
Out[16]:
22              such
56                 a
118            quite
169            quite
193            quite
335              not
369              one
542       incredibly
649                a
682              mad
759               an
773             very
801                a
819             very
822             just
852               my
924              one
988              not
992              his
993              one
1002               a
1004               a
1017               a
1025              an
1031            very
1040        actually
1049               a
1063            just
1071         getting
1095             mad
1097            very
1120            this
1121    unacceptable
1138             all
1193               a
1206             old
1207               a
1259     infuriating
1340               a
1351               a
1361               a
1362              an
1368               a
1382               a
1385            very
1435         getting
1457            just
1499               a
1527             the
1603             the
1693        actually
1724              by
1737               a
1747      officially
1785               a
1797             the
1815             the
1853               a
1854               a
1877               a
1878               a
1916            life
1923               a
1936             one
1941               a
1955               a
1994               a
2001           light
2019            just
2030           space
2034               a
2037             the
2066               a
2116               a
2125               a
2128               a
2146               a
2153               a
2161               a
2191               a
2198               a
2204              an
2211               a
2212             the
2218               a
2222               a
2235               a
2249               a
2255               a
2264               a
2273               a
2287               a
2304               a
2311               a
2314               a
2326           quite
2327               a
2333              an
2334               a
2335              an
2345             the
2346             the
2347               a
2348               a
2349              an
2350               a
2352               a
2353               a
2354               a
Name: name, dtype: object
In [17]:
archive_df.pupper.value_counts()
Out[17]:
None      2099
pupper     257
Name: pupper, dtype: int64
In [18]:
 archive_df.doggo.value_counts()
Out[18]:
None     2259
doggo      97
Name: doggo, dtype: int64
In [19]:
archive_df.floofer.value_counts()
Out[19]:
None       2346
floofer      10
Name: floofer, dtype: int64
In [20]:
archive_df.rating_denominator.value_counts()
Out[20]:
10     2333
11        3
50        3
80        2
20        2
2         1
16        1
40        1
70        1
15        1
90        1
110       1
120       1
130       1
150       1
170       1
7         1
0         1
Name: rating_denominator, dtype: int64
In [21]:
archive_df.rating_numerator.value_counts()
Out[21]:
12      558
11      464
10      461
13      351
9       158
8       102
7        55
14       54
5        37
6        32
3        19
4        17
1         9
2         9
420       2
0         2
15        2
75        2
80        1
20        1
24        1
26        1
44        1
50        1
60        1
165       1
84        1
88        1
144       1
182       1
143       1
666       1
960       1
1776      1
17        1
27        1
45        1
99        1
121       1
204       1
Name: rating_numerator, dtype: int64
In [22]:
#identify the rating denominator with 0
archive_df[archive_df['rating_denominator'] == 0]
Out[22]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
313 835246439529840640 8.352460e+17 26259576.0 2017-02-24 21:54:03 +0000 <a href="http://twitter.com/download/iphone" r... @jonnysun @Lin_Manuel ok jomny I know you're e... NaN NaN NaN NaN 960 0 None None None None None

Quality issues- archive df

  • there are missing values in in_reply_to_status_id ,in_reply_to_user_id,retweeted_status_id,retweeted_status_user_id,retweeted_status_timestamp columns
  • timestamp and retweeted_status_timestamp is an object instead of a datetime object
  • there are weird dog names in name columns like,
      'a', 'actually', 'all', 'an', 'by', 
      'getting', 'his',
     'incredibly', 'infuriating', 'just', 'life', 'light', 'mad', 'my',
     'not', 'officially', 'old', 'one', 'quite', 'space', 'such', 'the',
     'this', 'unacceptable', 'very.
  • rating denominator has a value of 0
  • rating denominator and numerator have high inconsistent values as high as 1776 and 170
  • missing values in doggo, floofer, pupper , puppo columns - has None instead of NaN
  • in_reply_to_status_id, in_reply_to_user_id, retweeted_status_id, retweeted_status_user_id must be integers instead of float ( They have id's similar to tweet_id)

Tidiness issues - archive df

  • Dog stages are found in multiple columns, hence we should find a way to club all these variables into single column. This will reduce the dimensionality of the dataframe

json tweet data

In [23]:
df_tweet_json.head()
Out[23]:
tweet_id retweet_count favorite_count
0 892420643555336193 8853 39467
1 892177421306343426 6514 33819
2 891815181378084864 4328 25461
3 891689557279858688 8964 42908
4 891327558926688256 9774 41048
In [24]:
df_tweet_json.describe()
Out[24]:
tweet_id retweet_count favorite_count
count 2354 2354 2354
unique 2354 1724 2007
top 667509364010450944 3652 0
freq 1 5 179
In [25]:
df_tweet_json.isnull().sum()
Out[25]:
tweet_id          0
retweet_count     0
favorite_count    0
dtype: int64
In [26]:
df_tweet_json.tweet_id.shape, archive_df.tweet_id.shape
Out[26]:
((2354,), (2356,))
In [27]:
df_tweet_json.tweet_id.duplicated().sum()
Out[27]:
0
In [28]:
df_tweet_json.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2354 entries, 0 to 2353
Data columns (total 3 columns):
tweet_id          2354 non-null object
retweet_count     2354 non-null object
favorite_count    2354 non-null object
dtypes: object(3)
memory usage: 55.2+ KB

quality issues - json data

  • there are data missing

tidiness issues - json data

  • data should be joined with archive data
  • data type for tweet_id retweet count, favorite count are object instead of integers

image prediction data

In [29]:
#preview the data
image_df.head(5)
Out[29]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 0.138584 True bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 0.360687 True miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True
In [30]:
image_df.shape
Out[30]:
(2075, 12)
In [31]:
image_df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 12 columns):
tweet_id    2075 non-null int64
jpg_url     2075 non-null object
img_num     2075 non-null int64
p1          2075 non-null object
p1_conf     2075 non-null float64
p1_dog      2075 non-null bool
p2          2075 non-null object
p2_conf     2075 non-null float64
p2_dog      2075 non-null bool
p3          2075 non-null object
p3_conf     2075 non-null float64
p3_dog      2075 non-null bool
dtypes: bool(3), float64(3), int64(2), object(4)
memory usage: 152.1+ KB
In [32]:
image_df.describe()
Out[32]:
tweet_id img_num p1_conf p2_conf p3_conf
count 2.075000e+03 2075.000000 2075.000000 2.075000e+03 2.075000e+03
mean 7.384514e+17 1.203855 0.594548 1.345886e-01 6.032417e-02
std 6.785203e+16 0.561875 0.271174 1.006657e-01 5.090593e-02
min 6.660209e+17 1.000000 0.044333 1.011300e-08 1.740170e-10
25% 6.764835e+17 1.000000 0.364412 5.388625e-02 1.622240e-02
50% 7.119988e+17 1.000000 0.588230 1.181810e-01 4.944380e-02
75% 7.932034e+17 1.000000 0.843855 1.955655e-01 9.180755e-02
max 8.924206e+17 4.000000 1.000000 4.880140e-01 2.734190e-01
In [33]:
# investigate duplicates
image_df.duplicated().sum()
Out[33]:
0
In [34]:
# investigate missing data
image_df.isnull().sum().sum()
Out[34]:
0
In [35]:
# using heatmap investigate for missing values
sb.heatmap(image_df.isnull())
Out[35]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f73b1254048>

Quality - image_predictions_df dataset:

  • since this data belongs to archive df it means that only 2075 tweetIds in our achive data have images

Tidiness - image prediction data

  • All the prediction outputs from different algorithms have to be joined with archive_df, becuase all the tweets information is found with archive_df

Clean

In [36]:
# c
archive_clean = archive_df.copy()
image_df_clean = image_df.copy()
tweet_json_clean = df_tweet_json.copy()

convert data types

Define

change the datatype of tweet_id, retweet_count. favorite_counts in tweet_json_clean from object to integar

Code

In [37]:
cols= list(tweet_json_clean.columns)
cols
Out[37]:
['tweet_id', 'retweet_count', 'favorite_count']
In [38]:
tweet_json_clean= tweet_json_clean[cols].astype('int64')

test

In [39]:
tweet_json_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2354 entries, 0 to 2353
Data columns (total 3 columns):
tweet_id          2354 non-null int64
retweet_count     2354 non-null int64
favorite_count    2354 non-null int64
dtypes: int64(3)
memory usage: 55.2 KB

Tidiness

Dog stages are found in multiple columns, hence we should find a way to club all these variables into single column. This will reduce the dimensionality of the dataframe

define

  • Convert the dog stage or category into one column instead of the multiple columns

Code

In [40]:
archive_clean.columns
Out[40]:
Index(['tweet_id', 'in_reply_to_status_id', 'in_reply_to_user_id', 'timestamp',
       'source', 'text', 'retweeted_status_id', 'retweeted_status_user_id',
       'retweeted_status_timestamp', 'expanded_urls', 'rating_numerator',
       'rating_denominator', 'name', 'doggo', 'floofer', 'pupper', 'puppo'],
      dtype='object')
In [41]:
archive_clean = pd.melt(archive_clean,id_vars=['tweet_id', 'in_reply_to_status_id', 'in_reply_to_user_id', 'timestamp',
       'source', 'text', 'retweeted_status_id', 'retweeted_status_user_id',
       'retweeted_status_timestamp', 'expanded_urls', 'rating_numerator',
       'rating_denominator', 'name'],
                        var_name = 'dog_stage',value_name = 'dog_stage_cat')
archive_clean = archive_clean.drop('dog_stage_cat', axis=1)

Test

In [42]:
archive_clean.head()
Out[42]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name dog_stage
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas doggo
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly doggo
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie doggo
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla doggo
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin doggo
In [43]:
archive_clean[archive_clean.dog_stage=='doggo']
Out[43]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name dog_stage
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas doggo
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly doggo
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie doggo
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla doggo
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin doggo
5 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None doggo
6 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax doggo
7 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None doggo
8 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey doggo
9 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie doggo
10 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda doggo
11 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno doggo
12 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None doggo
13 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted doggo
14 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart doggo
15 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver doggo
16 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim doggo
17 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke doggo
18 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus doggo
19 888202515573088257 NaN NaN 2017-07-21 01:02:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Canela. She attempted s... 8.874740e+17 4.196984e+09 2017-07-19 00:47:34 +0000 https://twitter.com/dog_rates/status/887473957... 13 10 Canela doggo
20 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... NaN NaN NaN https://twitter.com/dog_rates/status/888078434... 12 10 Gerald doggo
21 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... NaN NaN NaN https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey doggo
22 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... NaN NaN NaN https://twitter.com/dog_rates/status/887517139... 14 10 such doggo
23 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... NaN NaN NaN https://twitter.com/dog_rates/status/887473957... 13 10 Canela doggo
24 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... NaN NaN NaN https://twitter.com/dog_rates/status/887343217... 13 10 None doggo
25 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... NaN NaN NaN https://twitter.com/dog_rates/status/887101392... 12 10 None doggo
26 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... NaN NaN NaN https://twitter.com/dog_rates/status/886983233... 13 10 Maya doggo
27 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... NaN NaN NaN https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus doggo
28 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... NaN NaN NaN https://twitter.com/dog_rates/status/886680336... 13 10 Derek doggo
29 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... NaN NaN NaN https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe doggo
30 886267009285017600 8.862664e+17 2.281182e+09 2017-07-15 16:51:35 +0000 <a href="http://twitter.com/download/iphone" r... @NonWhiteHat @MayhewMayhem omg hello tanner yo... NaN NaN NaN NaN 12 10 None doggo
31 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... NaN NaN NaN https://twitter.com/dog_rates/status/886258384... 13 10 Waffles doggo
32 886054160059072513 NaN NaN 2017-07-15 02:45:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @Athletics: 12/10 #BATP https://t.co/WxwJmv... 8.860537e+17 1.960740e+07 2017-07-15 02:44:07 +0000 https://twitter.com/dog_rates/status/886053434... 12 10 None doggo
33 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... NaN NaN NaN https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo doggo
34 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... NaN NaN NaN https://twitter.com/dog_rates/status/885528943... 13 10 Maisey doggo
35 885518971528720385 NaN NaN 2017-07-13 15:19:09 +0000 <a href="http://twitter.com/download/iphone" r... I have a new hero and his name is Howard. 14/1... NaN NaN NaN https://twitter.com/4bonds2carbon/status/88551... 14 10 None doggo
36 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320... 13 10 Lilly doggo
37 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... NaN NaN NaN https://twitter.com/dog_rates/status/885167619... 13 10 None doggo
38 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... NaN NaN NaN https://twitter.com/dog_rates/status/884925521... 12 10 Earl doggo
39 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... NaN NaN NaN https://twitter.com/dog_rates/status/884876753... 13 10 Lola doggo
40 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... NaN NaN NaN https://twitter.com/dog_rates/status/884562892... 13 10 Kevin doggo
41 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... NaN NaN NaN https://twitter.com/dog_rates/status/884441805... 14 10 None doggo
42 884247878851493888 NaN NaN 2017-07-10 03:08:17 +0000 <a href="http://twitter.com/download/iphone" r... OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LIT... NaN NaN NaN https://twitter.com/kaijohnson_19/status/88396... 13 10 None doggo
43 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... NaN NaN NaN https://twitter.com/dog_rates/status/884162670... 12 10 Yogi doggo
44 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... NaN NaN NaN https://twitter.com/dog_rates/status/883838122... 12 10 Noah doggo
45 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... NaN NaN NaN https://twitter.com/dog_rates/status/883482846... 5 10 Bella doggo
46 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... NaN NaN NaN https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald doggo
47 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... NaN NaN NaN https://twitter.com/dog_rates/status/883117836... 13 10 None doggo
48 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... NaN NaN NaN https://twitter.com/dog_rates/status/882992080... 13 10 Rusty doggo
49 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... NaN NaN NaN https://twitter.com/dog_rates/status/882762694... 12 10 Gus doggo
50 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... NaN NaN NaN https://twitter.com/dog_rates/status/882627270... 13 10 Stanley doggo
51 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... NaN NaN NaN https://twitter.com/dog_rates/status/882268110... 13 10 Alfy doggo
52 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... NaN NaN NaN https://twitter.com/dog_rates/status/882045870... 13 10 Koko doggo
53 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/881906580... 12 10 Rey doggo
54 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... NaN NaN NaN https://twitter.com/dog_rates/status/881666595... 13 10 Gary doggo
55 881633300179243008 8.816070e+17 4.738443e+07 2017-07-02 21:58:53 +0000 <a href="http://twitter.com/download/iphone" r... @roushfenway These are good dogs but 17/10 is ... NaN NaN NaN NaN 17 10 None doggo
56 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... NaN NaN NaN https://twitter.com/dog_rates/status/881536004... 14 10 a doggo
57 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... NaN NaN NaN https://twitter.com/dog_rates/status/881268444... 12 10 Elliot doggo
58 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... NaN NaN NaN https://twitter.com/dog_rates/status/880935762... 13 10 Louis doggo
59 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... NaN NaN NaN https://twitter.com/dog_rates/status/880872448... 12 10 None doggo
60 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... NaN NaN NaN https://twitter.com/dog_rates/status/880465832... 12 10 Bella doggo
61 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... NaN NaN NaN https://twitter.com/dog_rates/status/880221127... 12 10 Jesse doggo
62 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... NaN NaN NaN https://twitter.com/dog_rates/status/880095782... 11 10 None doggo
63 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... NaN NaN NaN https://twitter.com/dog_rates/status/879862464... 13 10 Romeo doggo
64 879674319642796034 8.795538e+17 3.105441e+09 2017-06-27 12:14:36 +0000 <a href="http://twitter.com/download/iphone" r... @RealKentMurphy 14/10 confirmed NaN NaN NaN NaN 14 10 None doggo
65 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... NaN NaN NaN https://twitter.com/dog_rates/status/879492040... 12 10 Bailey doggo
66 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/879415818... 13 10 Duddles doggo
67 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... NaN NaN NaN https://twitter.com/dog_rates/status/879376492... 12 10 Jack doggo
68 879130579576475649 NaN NaN 2017-06-26 00:13:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Emmy. She was adopted t... 8.780576e+17 4.196984e+09 2017-06-23 01:10:23 +0000 https://twitter.com/dog_rates/status/878057613... 14 10 Emmy doggo
69 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... NaN NaN NaN https://twitter.com/dog_rates/status/879050749... 11 10 Steven doggo
70 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... NaN NaN NaN https://twitter.com/dog_rates/status/879008229... 13 10 Beau doggo
71 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... NaN NaN NaN https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy doggo
72 878604707211726852 NaN NaN 2017-06-24 13:24:20 +0000 <a href="http://twitter.com/download/iphone" r... Martha is stunning how h*ckin dare you. 13/10 ... NaN NaN NaN https://twitter.com/bbcworld/status/8785998685... 13 10 None doggo
73 878404777348136964 NaN NaN 2017-06-24 00:09:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Shadow. In an attempt to r... 8.782815e+17 4.196984e+09 2017-06-23 16:00:04 +0000 https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow doggo
74 878316110768087041 NaN NaN 2017-06-23 18:17:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Terrance. He's being yelle... 6.690004e+17 4.196984e+09 2015-11-24 03:51:38 +0000 https://twitter.com/dog_rates/status/669000397... 11 10 Terrance doggo
75 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow doggo
76 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... NaN NaN NaN https://twitter.com/dog_rates/status/878057613... 14 10 Emmy doggo
77 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/877736472... 13 10 Aja doggo
78 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/87685077... 14 10 None doggo
79 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... NaN NaN NaN https://twitter.com/dog_rates/status/877556246... 12 10 Penny doggo
80 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/877316821... 13 10 Dante doggo
81 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... NaN NaN NaN https://twitter.com/dog_rates/status/877201837... 12 10 Nelly doggo
82 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... NaN NaN NaN https://twitter.com/dog_rates/status/876838120... 12 10 Ginger doggo
83 876537666061221889 NaN NaN 2017-06-18 20:30:39 +0000 <a href="http://twitter.com/download/iphone" r... I can say with the pupmost confidence that the... NaN NaN NaN https://twitter.com/mpstowerham/status/8761629... 14 10 None doggo
84 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... NaN NaN NaN https://twitter.com/dog_rates/status/876484053... 13 10 Benedict doggo
85 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... NaN NaN NaN https://twitter.com/dog_rates/status/876120275... 13 10 Venti doggo
86 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... NaN NaN NaN https://twitter.com/dog_rates/status/875747767... 13 10 Goose doggo
87 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... NaN NaN NaN https://twitter.com/dog_rates/status/875144289... 13 10 Nugget doggo
88 875097192612077568 NaN NaN 2017-06-14 21:06:43 +0000 <a href="http://twitter.com/download/iphone" r... You'll get your package when that precious man... NaN NaN NaN https://twitter.com/drboondoc/status/874413398... 13 10 None doggo
89 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... NaN NaN NaN https://twitter.com/dog_rates/status/875021211... 12 10 None doggo
90 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... NaN NaN NaN https://twitter.com/dog_rates/status/874680097... 12 10 Cash doggo
91 874434818259525634 NaN NaN 2017-06-13 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Coco. At first I though... 8.663350e+17 4.196984e+09 2017-05-21 16:48:45 +0000 https://twitter.com/dog_rates/status/866334964... 12 10 Coco doggo
92 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... 13 10 Jed doggo
93 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... NaN NaN NaN https://twitter.com/dog_rates/status/874057562... 12 10 None doggo
94 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... NaN NaN NaN https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian doggo
95 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397... 14 10 Walter doggo
96 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... NaN NaN NaN https://twitter.com/dog_rates/status/873580283... 13 10 None doggo
97 873337748698140672 NaN NaN 2017-06-10 00:35:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sierra. She's one preci... 8.732138e+17 4.196984e+09 2017-06-09 16:22:42 +0000 https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra doggo
98 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra doggo
99 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... NaN NaN NaN https://twitter.com/dog_rates/status/872967104... 12 10 None doggo
100 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... NaN NaN NaN https://twitter.com/dog_rates/status/872820683... 13 10 None doggo
101 872668790621863937 NaN NaN 2017-06-08 04:17:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @loganamnosis: Penelope here is doing me qu... 8.726576e+17 1.547674e+08 2017-06-08 03:32:35 +0000 https://twitter.com/loganamnosis/status/872657... 14 10 None doggo
102 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... NaN NaN NaN https://twitter.com/dog_rates/status/872620804... 13 10 Monkey doggo
103 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... NaN NaN NaN https://twitter.com/dog_rates/status/872486979... 12 10 None doggo
104 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... NaN NaN NaN https://twitter.com/dog_rates/status/872261713... 13 10 Harry doggo
105 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... NaN NaN NaN https://twitter.com/dog_rates/status/872122724... 12 10 Kody doggo
106 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... NaN NaN NaN https://twitter.com/dog_rates/status/871879754... 13 10 Lassie doggo
107 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... NaN NaN NaN https://twitter.com/dog_rates/status/871762521... 12 10 Rover doggo
108 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... NaN NaN NaN https://twitter.com/dog_rates/status/871515927... 12 10 Napolean doggo
109 871166179821445120 NaN NaN 2017-06-04 00:46:17 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Dawn. She's just checki... 8.410770e+17 4.196984e+09 2017-03-13 00:02:39 +0000 https://twitter.com/dog_rates/status/841077006... 12 10 Dawn doggo
110 871102520638267392 NaN NaN 2017-06-03 20:33:19 +0000 <a href="http://twitter.com/download/iphone" r... Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH NaN NaN NaN https://twitter.com/animalcog/status/871075758... 14 10 None doggo
111 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... NaN NaN NaN https://twitter.com/dog_rates/status/871032628... 13 10 Boomer doggo
112 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... NaN NaN NaN https://twitter.com/dog_rates/status/870804317... 11 10 None doggo
113 870726314365509632 8.707262e+17 1.648776e+07 2017-06-02 19:38:25 +0000 <a href="http://twitter.com/download/iphone" r... @ComplicitOwl @ShopWeRateDogs &gt;10/10 is res... NaN NaN NaN NaN 10 10 None doggo
114 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody doggo
115 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... NaN NaN NaN https://twitter.com/dog_rates/status/870374049... 13 10 Zoey doggo
116 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... NaN NaN NaN https://twitter.com/dog_rates/status/870308999... 13 10 Rumble doggo
117 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... NaN NaN NaN https://twitter.com/dog_rates/status/870063196... 14 10 Clifford doggo
118 869988702071779329 NaN NaN 2017-05-31 18:47:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. This is quit... 8.591970e+17 4.196984e+09 2017-05-02 00:04:57 +0000 https://twitter.com/dog_rates/status/859196978... 12 10 quite doggo
119 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... NaN NaN NaN https://twitter.com/dog_rates/status/869772420... 13 10 Dewey doggo
120 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... NaN NaN NaN https://twitter.com/dog_rates/status/869702957... 13 10 Stanley doggo
121 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... NaN NaN NaN https://twitter.com/dog_rates/status/869596645... 12 10 Scout doggo
122 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... NaN NaN NaN https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo doggo
123 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... NaN NaN NaN https://twitter.com/dog_rates/status/868880397... 14 10 Walter doggo
124 868639477480148993 NaN NaN 2017-05-28 01:26:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Cooper. His expres... 8.685523e+17 4.196984e+09 2017-05-27 19:39:34 +0000 https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper doggo
125 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... NaN NaN NaN https://twitter.com/dog_rates/status/868622495... 13 10 None doggo
126 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper doggo
127 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... NaN NaN NaN https://twitter.com/dog_rates/status/867900495... 12 10 None doggo
128 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... NaN NaN NaN https://twitter.com/dog_rates/status/867774946... 13 10 Harold doggo
129 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... NaN NaN NaN https://twitter.com/dog_rates/status/867421006... 12 10 Shikha doggo
130 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/86501... 13 10 None doggo
131 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/867051520... 13 10 None doggo
132 866816280283807744 NaN NaN 2017-05-23 00:41:20 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Jamesy. He gives a kiss... 8.664507e+17 4.196984e+09 2017-05-22 00:28:40 +0000 https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy doggo
133 866720684873056260 NaN NaN 2017-05-22 18:21:28 +0000 <a href="http://twitter.com/download/iphone" r... He was providing for his family 13/10 how dare... NaN NaN NaN https://twitter.com/nbcnews/status/86645871888... 13 10 None doggo
134 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... NaN NaN NaN https://twitter.com/dog_rates/status/866686824... 12 10 Lili doggo
135 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... NaN NaN NaN https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy doggo
136 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... NaN NaN NaN https://twitter.com/dog_rates/status/866334964... 12 10 Coco doggo
137 866094527597207552 NaN NaN 2017-05-21 00:53:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a pupper before and afte... 8.378202e+17 4.196984e+09 2017-03-04 00:21:08 +0000 https://twitter.com/dog_rates/status/837820167... 12 10 None doggo
138 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... NaN NaN NaN https://twitter.com/dog_rates/status/865718153... 13 10 Boomer doggo
139 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... NaN NaN NaN https://twitter.com/dog_rates/status/865359393... 13 10 Sammy doggo
140 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... NaN NaN NaN https://twitter.com/dog_rates/status/865006731... 13 10 Nelly doggo
141 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... NaN NaN NaN https://twitter.com/dog_rates/status/864873206... 14 10 None doggo
142 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... NaN NaN NaN https://twitter.com/dog_rates/status/864279568... 12 10 Meatball doggo
143 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... NaN NaN NaN https://twitter.com/dog_rates/status/864197398... 13 10 Paisley doggo
144 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... NaN NaN NaN https://twitter.com/dog_rates/status/863907417... 13 10 Albus doggo
145 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... NaN NaN NaN https://twitter.com/dog_rates/status/863553081... 13 10 Neptune doggo
146 863471782782697472 NaN NaN 2017-05-13 19:11:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Quinn. She's quite... 8.630625e+17 4.196984e+09 2017-05-12 16:05:02 +0000 https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn doggo
147 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... NaN NaN NaN https://twitter.com/dog_rates/status/863432100... 12 10 Belle doggo
148 863427515083354112 8.634256e+17 7.759620e+07 2017-05-13 16:15:35 +0000 <a href="http://twitter.com/download/iphone" r... @Jack_Septic_Eye I'd need a few more pics to p... NaN NaN NaN NaN 12 10 None doggo
149 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... NaN NaN NaN https://twitter.com/dog_rates/status/863079547... 14 10 None doggo
150 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... NaN NaN NaN https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn doggo
151 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... NaN NaN NaN https://twitter.com/dog_rates/status/862831371... 13 10 Zooey doggo
152 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... NaN NaN NaN https://twitter.com/dog_rates/status/862722525... 11 10 Dave doggo
153 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... NaN NaN NaN https://twitter.com/dog_rates/status/862457590... 13 10 Jersey doggo
154 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... NaN NaN NaN https://twitter.com/dog_rates/status/862096992... 13 10 None doggo
155 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075... 13 10 None doggo
156 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... NaN NaN NaN https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes doggo
157 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... NaN NaN NaN https://twitter.com/dog_rates/status/861288531... 13 10 None doggo
158 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... NaN NaN NaN https://twitter.com/dog_rates/status/861005113... 12 10 Burt doggo
159 860981674716409858 NaN NaN 2017-05-06 22:16:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Lorenzo. He's an avid nift... 8.605638e+17 4.196984e+09 2017-05-05 18:36:06 +0000 https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo doggo
160 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485... 13 10 None doggo
161 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo doggo
162 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... NaN NaN NaN https://twitter.com/dog_rates/status/860524505... 13 10 Carl doggo
163 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... NaN NaN NaN https://twitter.com/dog_rates/status/860276583... 12 10 Jordy doggo
164 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... NaN NaN NaN https://twitter.com/dog_rates/status/860184849... 14 10 None doggo
165 860177593139703809 NaN NaN 2017-05-04 17:01:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Ohboyohboyohboyohboyohboyohboyo... 7.616730e+17 4.196984e+09 2016-08-05 21:19:27 +0000 https://twitter.com/dog_rates/status/761672994... 10 10 None doggo
166 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... NaN NaN NaN https://twitter.com/dog_rates/status/859924526... 12 10 Milky doggo
167 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... NaN NaN NaN https://twitter.com/dog_rates/status/859851578... 13 10 Trooper doggo
168 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... NaN NaN NaN https://twitter.com/dog_rates/status/859607811... 13 10 None doggo
169 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... NaN NaN NaN https://twitter.com/dog_rates/status/859196978... 12 10 quite doggo
170 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... NaN NaN NaN https://twitter.com/dog_rates/status/859074603... 13 10 None doggo
171 858860390427611136 NaN NaN 2017-05-01 01:47:28 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Winston. He knows he's a l... 8.395493e+17 4.196984e+09 2017-03-08 18:52:12 +0000 https://twitter.com/dog_rates/status/839549326... 12 10 Winston doggo
172 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... NaN NaN NaN https://twitter.com/dog_rates/status/858843525... 13 10 None doggo
173 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... NaN NaN NaN https://twitter.com/dog_rates/status/858471635... 13 10 Sophie doggo
174 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... NaN NaN NaN https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt doggo
175 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... NaN NaN NaN https://twitter.com/dog_rates/status/857989990... 12 10 Rosie doggo
176 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... NaN NaN NaN https://twitter.com/dog_rates/status/857746408... 13 10 Thor doggo
177 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None doggo
178 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar doggo
179 857214891891077121 8.571567e+17 1.806710e+08 2017-04-26 12:48:51 +0000 <a href="http://twitter.com/download/iphone" r... @Marc_IRL pixelated af 12/10 NaN NaN NaN NaN 12 10 None doggo
180 857062103051644929 NaN NaN 2017-04-26 02:41:43 +0000 <a href="http://twitter.com/download/iphone" r... RT @AaronChewning: First time wearing my @dog_... 8.570611e+17 5.870972e+07 2017-04-26 02:37:47 +0000 https://twitter.com/AaronChewning/status/85706... 13 10 None doggo
181 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... NaN NaN NaN https://twitter.com/dog_rates/status/857029823... 12 10 Zeke doggo
182 856602993587888130 NaN NaN 2017-04-24 20:17:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Luna. It's her first ti... 8.447048e+17 4.196984e+09 2017-03-23 00:18:10 +0000 https://twitter.com/dog_rates/status/844704788... 13 10 Luna doggo
183 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... NaN NaN NaN https://twitter.com/dog_rates/status/856543823... 12 10 Callie doggo
184 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... NaN NaN NaN https://twitter.com/dog_rates/status/856526610... 14 10 None doggo
185 856330835276025856 NaN NaN 2017-04-24 02:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @Jenna_Marbles: @dog_rates Thanks for ratin... 8.563302e+17 6.669901e+07 2017-04-24 02:13:14 +0000 NaN 14 10 None doggo
186 856288084350160898 8.562860e+17 2.792810e+08 2017-04-23 23:26:03 +0000 <a href="http://twitter.com/download/iphone" r... @xianmcguire @Jenna_Marbles Kardashians wouldn... NaN NaN NaN NaN 14 10 None doggo
187 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... NaN NaN NaN https://twitter.com/dog_rates/status/856282028... 14 10 Cermet doggo
188 855862651834028034 8.558616e+17 1.943518e+08 2017-04-22 19:15:32 +0000 <a href="http://twitter.com/download/iphone" r... @dhmontgomery We also gave snoop dogg a 420/10... NaN NaN NaN NaN 420 10 None doggo
189 855860136149123072 8.558585e+17 1.361572e+07 2017-04-22 19:05:32 +0000 <a href="http://twitter.com/download/iphone" r... @s8n You tried very hard to portray this good ... NaN NaN NaN NaN 666 10 None doggo
190 855857698524602368 NaN NaN 2017-04-22 18:55:51 +0000 <a href="http://twitter.com/download/iphone" r... HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS... NaN NaN NaN https://twitter.com/perfy/status/8558573181681... 13 10 None doggo
191 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... NaN NaN NaN https://twitter.com/dog_rates/status/855851453... 13 10 None doggo
192 855818117272018944 NaN NaN 2017-04-22 16:18:34 +0000 <a href="http://twitter.com/download/iphone" r... I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUS... NaN NaN NaN https://twitter.com/markhalperin/status/855656... 13 10 None doggo
193 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... NaN NaN NaN https://twitter.com/dog_rates/status/855459453... 12 10 quite doggo
194 855245323840757760 NaN NaN 2017-04-21 02:22:29 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet George. He looks slightly ... 8.421635e+17 4.196984e+09 2017-03-16 00:00:07 +0000 https://twitter.com/dog_rates/status/842163532... 12 10 George doggo
195 855138241867124737 NaN NaN 2017-04-20 19:16:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @frasercampbell_: oh my... what's that... b... 8.551225e+17 7.475543e+17 2017-04-20 18:14:33 +0000 https://twitter.com/frasercampbell_/status/855... 14 10 None doggo
196 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... NaN NaN NaN https://twitter.com/dog_rates/status/854732716... 12 10 Marlee doggo
197 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... NaN NaN NaN https://twitter.com/dog_rates/status/854482394... 13 10 Arya doggo
198 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... NaN NaN NaN https://twitter.com/dog_rates/status/854365224... 13 10 Einstein doggo
199 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... NaN NaN NaN https://twitter.com/dog_rates/status/854120357... 14 10 None doggo
200 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... NaN NaN NaN https://twitter.com/dog_rates/status/854010172... 11 10 None doggo
201 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... NaN NaN NaN https://twitter.com/dog_rates/status/853760880... 12 10 Alice doggo
202 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... NaN NaN NaN https://twitter.com/dog_rates/status/853639147... 13 10 None doggo
203 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... NaN NaN NaN https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole doggo
204 852936405516943360 NaN NaN 2017-04-14 17:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I usually only share these on F... 8.316501e+17 4.196984e+09 2017-02-14 23:43:18 +0000 http://www.gofundme.com/bluethewhitehusky,http... 13 10 None doggo
205 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny doggo
206 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... NaN NaN NaN https://twitter.com/dog_rates/status/852672615... 12 10 Aspen doggo
207 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... NaN NaN NaN https://twitter.com/dog_rates/status/852553447... 13 10 Jarod doggo
208 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... NaN NaN NaN https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles doggo
209 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... NaN NaN NaN https://twitter.com/dog_rates/status/852226086... 14 10 General doggo
210 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... NaN NaN NaN https://twitter.com/dog_rates/status/852189679... 12 10 Sailor doggo
211 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341... 13 10 Astrid doggo
212 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/8482893... 10 10 None doggo
213 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... NaN NaN NaN https://twitter.com/dog_rates/status/851591660... 11 10 None doggo
214 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... NaN NaN NaN https://twitter.com/dog_rates/status/851464819... 14 10 Iggy doggo
215 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... NaN NaN NaN https://twitter.com/dog_rates/status/851224888... 13 10 Snoop doggo
216 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... NaN NaN NaN https://twitter.com/dog_rates/status/850753642... 11 10 Kyle doggo
217 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... NaN NaN NaN https://twitter.com/dog_rates/status/850380195... 13 10 Leo doggo
218 850333567704068097 8.503288e+17 2.195506e+07 2017-04-07 13:04:55 +0000 <a href="http://twitter.com/download/iphone" r... @markhoppus MARK THAT DOG HAS SEEN AND EXPERIE... NaN NaN NaN NaN 13 10 None doggo
219 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... NaN NaN NaN https://twitter.com/dog_rates/status/850145622... 11 10 Riley doggo
220 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... NaN NaN NaN https://twitter.com/dog_rates/status/850019790... 12 10 Boomer doggo
221 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... NaN NaN NaN https://twitter.com/dog_rates/status/849776966... 12 10 None doggo
222 849668094696017920 NaN NaN 2017-04-05 17:00:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gidget. She's a spy pup... 8.331247e+17 4.196984e+09 2017-02-19 01:23:00 +0000 https://twitter.com/dog_rates/status/833124694... 12 10 Gidget doggo
223 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... NaN NaN NaN https://twitter.com/dog_rates/status/849412302... 12 10 Noosh doggo
224 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... NaN NaN NaN https://twitter.com/dog_rates/status/849336543... 11 10 None doggo
225 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... NaN NaN NaN https://twitter.com/dog_rates/status/849051919... 13 10 Kevin doggo
226 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... NaN NaN NaN https://twitter.com/dog_rates/status/848690551... 12 10 None doggo
227 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... NaN NaN NaN https://twitter.com/dog_rates/status/848324959... 12 10 Odin doggo
228 848213670039564288 8.482121e+17 4.196984e+09 2017-04-01 16:41:12 +0000 <a href="http://twitter.com/download/iphone" r... Jerry just apuppologized to me. He said there ... NaN NaN NaN NaN 11 10 None doggo
229 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... NaN NaN NaN https://twitter.com/dog_rates/status/848212111... 6 10 Jerry doggo
230 847978865427394560 NaN NaN 2017-04-01 01:08:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Charlie. He fell asleep... 8.323699e+17 4.196984e+09 2017-02-16 23:23:38 +0000 https://twitter.com/dog_rates/status/832369877... 11 10 Charlie doggo
231 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971... 13 10 None doggo
232 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... NaN NaN NaN https://twitter.com/dog_rates/status/847962785... 10 10 Georgie doggo
233 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... NaN NaN NaN https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu doggo
234 847617282490613760 8.476062e+17 4.196984e+09 2017-03-31 01:11:22 +0000 <a href="http://twitter.com/download/iphone" r... .@breaannanicolee PUPDATE: Cannon has a heart ... NaN NaN NaN NaN 13 10 None doggo
235 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... NaN NaN NaN https://twitter.com/dog_rates/status/847606175... 12 10 Cannon doggo
236 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... NaN NaN NaN https://twitter.com/dog_rates/status/847251039... 12 10 Furzey doggo
237 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... NaN NaN NaN https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy doggo
238 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... NaN NaN NaN https://twitter.com/dog_rates/status/847116187... 11 10 None doggo
239 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/846874817... 13 10 Tuck doggo
240 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... NaN NaN NaN https://twitter.com/dog_rates/status/846514051... 13 10 Barney doggo
241 846505985330044928 NaN NaN 2017-03-27 23:35:28 +0000 <a href="http://twitter.com/download/iphone" r... THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 S... NaN NaN NaN https://twitter.com/shomaristone/status/846484... 11 10 None doggo
242 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... NaN NaN NaN https://twitter.com/dog_rates/status/846153765... 13 10 Vixen doggo
243 846139713627017216 NaN NaN 2017-03-26 23:20:02 +0000 <a href="http://twitter.com/download/iphone" r... SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON TH... NaN NaN NaN https://twitter.com/csncapitals/status/8460884... 13 10 None doggo
244 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... NaN NaN NaN https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis doggo
245 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... NaN NaN NaN https://twitter.com/dog_rates/status/845812042... 13 10 None doggo
246 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/845677943... 12 10 None doggo
247 845459076796616705 NaN NaN 2017-03-25 02:15:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a heartwarming scene of ... 7.562885e+17 4.196984e+09 2016-07-22 00:43:32 +0000 https://twitter.com/dog_rates/status/756288534... 12 10 None doggo
248 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa doggo
249 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/845306882... 12 10 Pickles doggo
250 845098359547420673 NaN NaN 2017-03-24 02:22:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bungalo. She uses that ... 7.733088e+17 4.196984e+09 2016-09-06 23:56:05 +0000 https://twitter.com/dog_rates/status/773308824... 12 10 Bungalo doggo
251 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... NaN NaN NaN https://twitter.com/dog_rates/status/844979544... 13 10 None doggo
252 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... NaN NaN NaN https://twitter.com/dog_rates/status/844973813... 12 10 Brady doggo
253 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... NaN NaN NaN https://twitter.com/dog_rates/status/844704788... 13 10 Luna doggo
254 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... NaN NaN NaN https://twitter.com/dog_rates/status/844580511... 11 10 Charlie doggo
255 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... NaN NaN NaN https://twitter.com/dog_rates/status/844223788... 12 10 Margo doggo
256 843981021012017153 NaN NaN 2017-03-21 00:22:10 +0000 <a href="http://twitter.com/download/iphone" r... HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/... NaN NaN NaN https://twitter.com/brianstack153/status/79679... 13 10 None doggo
257 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... NaN NaN NaN https://twitter.com/dog_rates/status/843856843... 12 10 Sadie doggo
258 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... NaN NaN NaN https://twitter.com/dog_rates/status/843604394... 11 10 Hank doggo
259 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... NaN NaN NaN https://twitter.com/dog_rates/status/843235543... 13 10 Tycho doggo
260 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840... 13 10 Stephan doggo
261 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... NaN NaN NaN https://twitter.com/dog_rates/status/842846295... 13 10 Charlie doggo
262 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... NaN NaN NaN https://www.gofundme.com/get-indie-home/,https... 12 10 Indie doggo
263 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... NaN NaN NaN https://twitter.com/dog_rates/status/842535590... 13 10 Winnie doggo
264 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... NaN NaN NaN https://twitter.com/dog_rates/status/842163532... 12 10 George doggo
265 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... NaN NaN NaN https://twitter.com/dog_rates/status/842115215... 12 10 Bentley doggo
266 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860... 13 10 Ken doggo
267 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... NaN NaN NaN https://twitter.com/dog_rates/status/841680585... 12 10 Penny doggo
268 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... NaN NaN NaN https://twitter.com/dog_rates/status/841439858... 14 10 None doggo
269 841320156043304961 NaN NaN 2017-03-13 16:08:50 +0000 <a href="http://twitter.com/download/iphone" r... We don't rate penguins, but if we did, this on... NaN NaN NaN https://twitter.com/abc/status/841311395547250688 12 10 None doggo
270 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... NaN NaN NaN https://twitter.com/dog_rates/status/841314665... 13 10 Max doggo
271 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... NaN NaN NaN https://twitter.com/dog_rates/status/841077006... 12 10 Dawn doggo
272 840761248237133825 NaN NaN 2017-03-12 03:07:56 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Maddie and Gunner.... 8.406323e+17 4.196984e+09 2017-03-11 18:35:42 +0000 https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie doggo
273 840728873075638272 NaN NaN 2017-03-12 00:59:17 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Pipsy. He is a fluffbal... 6.671522e+17 4.196984e+09 2015-11-19 01:27:25 +0000 https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy doggo
274 840698636975636481 8.406983e+17 8.405479e+17 2017-03-11 22:59:09 +0000 <a href="http://twitter.com/download/iphone" r... @0_kelvin_0 &gt;10/10 is reserved for puppos s... NaN NaN NaN NaN 10 10 None doggo
275 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... NaN NaN NaN https://twitter.com/dog_rates/status/840696689... 10 10 None doggo
276 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie doggo
277 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... NaN NaN NaN https://twitter.com/dog_rates/status/840370681... 13 10 None doggo
278 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... NaN NaN NaN https://twitter.com/dog_rates/status/840268004... 12 10 Monty doggo
279 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... NaN NaN NaN https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner doggo
280 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... NaN NaN NaN https://twitter.com/dog_rates/status/839549326... 12 10 Winston doggo
281 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/8392... 10 10 None doggo
282 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... NaN NaN NaN https://twitter.com/dog_rates/status/839239871... 13 10 Odie doggo
283 838952994649550848 NaN NaN 2017-03-07 03:22:35 +0000 <a href="http://twitter.com/download/iphone" r... SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN... NaN NaN NaN https://twitter.com/ktla/status/83894871422799... 13 10 None doggo
284 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... NaN NaN NaN https://twitter.com/dog_rates/status/838921590... 13 10 Arlo doggo
285 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/83890598062... 15 10 None doggo
286 838831947270979586 NaN NaN 2017-03-06 19:21:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Riley. His owner put a ... 7.838400e+17 4.196984e+09 2016-10-06 01:23:05 +0000 https://twitter.com/dog_rates/status/783839966... 13 10 Riley doggo
287 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... NaN NaN NaN https://twitter.com/dog_rates/status/838561493... 13 10 Walter doggo
288 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... NaN NaN NaN https://twitter.com/dog_rates/status/838476387... 13 10 Stanley doggo
289 838201503651401729 NaN NaN 2017-03-05 01:36:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Sunny. He can take down a ... 8.207497e+17 4.196984e+09 2017-01-15 21:49:15 +0000 https://twitter.com/dog_rates/status/820749716... 13 10 Sunny doggo
290 838150277551247360 8.381455e+17 2.195506e+07 2017-03-04 22:12:52 +0000 <a href="http://twitter.com/download/iphone" r... @markhoppus 182/10 NaN NaN NaN NaN 182 10 None doggo
291 838085839343206401 8.380855e+17 2.894131e+09 2017-03-04 17:56:49 +0000 <a href="http://twitter.com/download/iphone" r... @bragg6of8 @Andy_Pace_ we are still looking fo... NaN NaN NaN NaN 15 10 None doggo
292 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... NaN NaN NaN https://twitter.com/dog_rates/status/838083903... 13 10 Daisy doggo
293 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... NaN NaN NaN https://twitter.com/dog_rates/status/837820167... 12 10 None doggo
294 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... NaN NaN NaN https://twitter.com/dog_rates/status/837482249... 13 10 Waffles doggo
295 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... NaN NaN NaN https://twitter.com/dog_rates/status/837471256... 12 10 Vincent doggo
296 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... NaN NaN NaN https://twitter.com/dog_rates/status/837366284... 13 10 Lucy doggo
297 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... NaN NaN NaN https://twitter.com/dog_rates/status/837110210... 13 10 Clark doggo
298 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837... 14 10 None doggo
299 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... NaN NaN NaN https://twitter.com/dog_rates/status/836989968... 12 10 Mookie doggo
300 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... NaN NaN NaN https://twitter.com/dog_rates/status/836753516... 12 10 Meera doggo
301 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... NaN NaN NaN https://twitter.com/dog_rates/status/836677758... 11 10 Oliver doggo
302 836648853927522308 NaN NaN 2017-02-28 18:46:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @SchafeBacon2016: @dog_rates Slightly distu... 8.366481e+17 7.124572e+17 2017-02-28 18:43:57 +0000 https://twitter.com/SchafeBacon2016/status/836... 11 10 None doggo
303 836397794269200385 NaN NaN 2017-02-28 02:09:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Buddy. He ran into a gl... 8.178278e+17 4.196984e+09 2017-01-07 20:18:46 +0000 https://twitter.com/dog_rates/status/817827839... 13 10 Buddy doggo
304 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... NaN NaN NaN https://twitter.com/dog_rates/status/836380477... 12 10 Ava doggo
305 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... NaN NaN NaN https://twitter.com/dog_rates/status/836260088... 13 10 Lucy doggo
306 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... NaN NaN NaN https://twitter.com/dog_rates/status/836001077... 13 10 None doggo
307 835685285446955009 NaN NaN 2017-02-26 02:57:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rory. He's got an inter... 7.869631e+17 4.196984e+09 2016-10-14 16:13:10 +0000 https://twitter.com/dog_rates/status/786963064... 12 10 Rory doggo
308 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... NaN NaN NaN https://twitter.com/dog_rates/status/835574547... 11 10 Eli doggo
309 835536468978302976 NaN NaN 2017-02-25 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Lola. Her hobbies include ... 8.352641e+17 4.196984e+09 2017-02-24 23:04:14 +0000 https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola doggo
310 835309094223372289 NaN NaN 2017-02-25 02:03:02 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: So this just changed my life. 1... 7.530398e+17 4.196984e+09 2016-07-13 01:34:21 +0000 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/... 13 10 None doggo
311 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... NaN NaN NaN https://twitter.com/dog_rates/status/835297930... 12 10 Ash doggo
312 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... NaN NaN NaN https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola doggo
313 835246439529840640 8.352460e+17 2.625958e+07 2017-02-24 21:54:03 +0000 <a href="http://twitter.com/download/iphone" r... @jonnysun @Lin_Manuel ok jomny I know you're e... NaN NaN NaN NaN 960 0 None doggo
314 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... NaN NaN NaN https://twitter.com/dog_rates/status/835172783... 12 10 None doggo
315 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... NaN NaN NaN https://twitter.com/dog_rates/status/835152434... 0 10 None doggo
316 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He decided it was time to part... NaN NaN NaN https://twitter.com/dog_rates/status/834931633... 12 10 Tucker doggo
317 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tobi. She is properly fetching her sho... NaN NaN NaN https://twitter.com/dog_rates/status/834786237... 13 10 Tobi doggo
318 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo fully pupared for a shower. H*c... NaN NaN NaN https://twitter.com/dog_rates/status/834574053... 13 10 None doggo
319 834477809192075265 NaN NaN 2017-02-22 18:59:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Leo. He was a skater pu... 8.295020e+17 4.196984e+09 2017-02-09 01:27:41 +0000 https://twitter.com/dog_rates/status/829501995... 12 10 Leo doggo
320 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester (bottom) &amp; Harold (top). They... NaN NaN NaN https://twitter.com/dog_rates/status/834458053... 12 10 Chester doggo
321 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. He's aware that he has somethi... NaN NaN NaN https://twitter.com/dog_rates/status/834209720... 12 10 Wilson doggo
322 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunshine. She doesn't believe in perso... NaN NaN NaN https://twitter.com/dog_rates/status/834167344... 11 10 Sunshine doggo
323 834089966724603904 NaN NaN 2017-02-21 17:18:39 +0000 <a href="http://twitter.com/download/iphone" r... DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE... NaN NaN NaN https://twitter.com/stevekopack/status/8340866... 10 10 None doggo
324 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lipton. He's a West Romanian Snuggle P... NaN NaN NaN https://twitter.com/dog_rates/status/834086379... 12 10 Lipton doggo
325 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. Hairbrushes are his favorite ... NaN NaN NaN https://twitter.com/dog_rates/status/833863086... 12 10 Bentley doggo
326 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. She asked u to change the channe... NaN NaN NaN https://twitter.com/dog_rates/status/833826103... 13 10 Charlie doggo
327 833732339549220864 NaN NaN 2017-02-20 17:37:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @rolltidered: This is Gabby. Now requests t... 8.324344e+17 4.466750e+07 2017-02-17 03:39:51 +0000 https://twitter.com/rolltidered/status/8324343... 12 10 Gabby doggo
328 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bronte. She's fairly h*ckin aerodynami... NaN NaN NaN https://twitter.com/dog_rates/status/833722901... 13 10 Bronte doggo
329 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Poppy. She just arrived. 13/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/833479644... 13 10 Poppy doggo
330 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gidget. She's a spy pupper. Stealthy a... NaN NaN NaN https://twitter.com/dog_rates/status/833124694... 12 10 Gidget doggo
331 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rhino. He arrived at a shelter with an... NaN NaN NaN https://twitter.com/dog_rates/status/832998151... 13 10 Rhino doggo
332 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @EmilieGambril: 12/10 h*cking excited about... 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/83276... 12 10 None doggo
333 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Willow. She's the official strawberry ... NaN NaN NaN https://twitter.com/dog_rates/status/832757312... 13 10 Willow doggo
334 832682457690300417 NaN NaN 2017-02-17 20:05:43 +0000 <a href="http://twitter.com/download/iphone" r... Prosperous good boy 13/10 socioeconomic af htt... NaN NaN NaN https://twitter.com/telegraph/status/832268302... 13 10 None doggo
335 832645525019123713 NaN NaN 2017-02-17 17:38:57 +0000 <a href="http://twitter.com" rel="nofollow">Tw... There's going to be a dog terminal at JFK Airp... NaN NaN NaN http://us.blastingnews.com/news/2017/02/jfk-an... 10 10 not doggo
336 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Orion. He just got back from the denti... NaN NaN NaN https://twitter.com/dog_rates/status/832636094... 12 10 Orion doggo
337 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Eevee. She wants to see how you're doi... NaN NaN NaN https://twitter.com/dog_rates/status/832397543... 12 10 Eevee doggo
338 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He fell asleep on a heating v... NaN NaN NaN https://twitter.com/dog_rates/status/832369877... 11 10 Charlie doggo
339 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Smiley. He's a blind therapy dogg... NaN NaN NaN https://twitter.com/dog_rates/status/832273440... 14 10 Smiley doggo
340 832215909146226688 NaN NaN 2017-02-16 13:11:49 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Logan, the Chow who liv... 7.867091e+17 4.196984e+09 2016-10-13 23:23:56 +0000 https://twitter.com/dog_rates/status/786709082... 75 10 Logan doggo
341 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Moreton. He's the Good ... 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476... 13 10 Moreton doggo
342 832088576586297345 8.320875e+17 3.058208e+07 2017-02-16 04:45:50 +0000 <a href="http://twitter.com/download/iphone" r... @docmisterio account started on 11/15/15 NaN NaN NaN NaN 11 15 None doggo
343 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Klein. These pics were ... 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425... 12 10 Klein doggo
344 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Miguel. He was the only remaining dogg... NaN NaN NaN https://www.petfinder.com/petdetail/34918210,h... 12 10 Miguel doggo
345 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Emanuel. He's a h*ckin rare doggo. Dwe... NaN NaN NaN https://twitter.com/dog_rates/status/831939777... 12 10 Emanuel doggo
346 831926988323639298 8.319030e+17 2.068372e+07 2017-02-15 18:03:45 +0000 <a href="http://twitter.com/download/iphone" r... @UNC can confirm 12/10 NaN NaN NaN NaN 12 10 None doggo
347 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kuyu. He was trapped in a well for 10 day... NaN NaN NaN https://twitter.com/dog_rates/status/831911600... 14 10 Kuyu doggo
348 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She has a heart on her butt. 13... NaN NaN NaN https://twitter.com/dog_rates/status/831670449... 13 10 Daisy doggo
349 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" r... I usually only share these on Friday's, but th... NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,http... 13 10 None doggo
350 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Dutch. He dressed up as his favorite e... NaN NaN NaN https://twitter.com/dog_rates/status/831552930... 13 10 Dutch doggo
351 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Pete. He has no eyes. Needs a guide do... NaN NaN NaN https://twitter.com/dog_rates/status/831322785... 12 10 Pete doggo
352 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Tw... I couldn't make it to the #WKCDogShow BUT I ha... NaN NaN NaN https://twitter.com/dog_rates/status/831315979... 13 10 None doggo
353 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter and his son Montoya. Scooter ... NaN NaN NaN https://twitter.com/dog_rates/status/831309418... 12 10 Scooter doggo
354 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's feeling h*ckin festive an... NaN NaN NaN https://twitter.com/dog_rates/status/831262627... 12 10 Tucker doggo
355 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Reggie. He hates puns. 12/10 ligh... NaN NaN NaN https://twitter.com/dog_rates/status/830956169... 12 10 Reggie doggo
356 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilly. She just parallel barked. Kindl... NaN NaN NaN https://twitter.com/dog_rates/status/830583320... 13 10 Lilly doggo
357 830173239259324417 NaN NaN 2017-02-10 21:54:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Kyro. He's a Stratocumu... 8.092201e+17 4.196984e+09 2016-12-15 02:14:29 +0000 https://twitter.com/dog_rates/status/809220051... 12 10 Kyro doggo
358 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson doggo
359 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Loki. He smiles like El... 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653... 12 10 Loki doggo
360 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She already knows she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/829861396... 12 10 Mia doggo
361 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He was a skater pup. She said see... NaN NaN NaN https://twitter.com/dog_rates/status/829501995... 12 10 Leo doggo
362 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" r... Here's a stressed doggo. Had a long day. Many ... NaN NaN NaN https://twitter.com/dog_rates/status/829449946... 11 10 None doggo
363 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Astrid. She's a guide doggo in trainin... NaN NaN NaN https://twitter.com/dog_rates/status/829374341... 13 10 Astrid doggo
364 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He goes from sneaky tongue sl... NaN NaN NaN https://twitter.com/dog_rates/status/829141528... 12 10 Malcolm doggo
365 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He was reunited with his mom y... NaN NaN NaN https://twitter.com/dog_rates/status/829011960... 13 10 Dexter doggo
366 828801551087042563 NaN NaN 2017-02-07 03:04:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gus. He likes to be clo... 8.102541e+17 4.196984e+09 2016-12-17 22:43:27 +0000 https://twitter.com/dog_rates/status/810254108... 12 10 Gus doggo
367 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's your Lyft for tonight. Kin... NaN NaN NaN https://twitter.com/dog_rates/status/828770345... 13 10 Alfie doggo
368 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an exotic dog. Seems rath... NaN NaN NaN https://twitter.com/dog_rates/status/828708714... 10 10 Fiona doggo
369 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" r... Occasionally, we're sent fantastic stories. Th... NaN NaN NaN https://twitter.com/dog_rates/status/828650029... 14 10 one doggo
370 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mutt Ryan. He's quite confident at the... NaN NaN NaN https://twitter.com/dog_rates/status/828409743... 12 10 Mutt doggo
371 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He went outside to play in the s... NaN NaN NaN https://twitter.com/dog_rates/status/828408677... 12 10 Bear doggo
372 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Doobert. He's a deaf doggo. Didn't stop h... NaN NaN NaN https://twitter.com/dog_rates/status/828381636... 14 10 Doobert doggo
373 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Beebop. Her name means "Good Dog" in r... NaN NaN NaN https://twitter.com/dog_rates/status/828376505... 13 10 Beebop doggo
374 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexander Hamilpup. He was one of the ... NaN NaN NaN https://twitter.com/dog_rates/status/828372645... 12 10 Alexander doggo
375 828361771580813312 NaN NaN 2017-02-05 21:56:51 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Beebop and Doobert should start a band 12/10 w... NaN NaN NaN NaN 12 10 None doggo
376 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailer. He waits on the roof for his o... NaN NaN NaN https://twitter.com/dog_rates/status/828046555... 13 10 Sailer doggo
377 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brutus and Jersey. They think the... NaN NaN NaN https://twitter.com/dog_rates/status/828011680... 11 10 Brutus doggo
378 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kona. Yesterday she stopped by the dep... NaN NaN NaN https://twitter.com/dog_rates/status/827933404... 12 10 Kona doggo
379 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Boots. She doesn't know what to do wit... NaN NaN NaN https://twitter.com/dog_rates/status/827653905... 12 10 Boots doggo
380 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tucker. It's his birthday. He's pupset wi... NaN NaN NaN https://twitter.com/dog_rates/status/827600520... 13 10 Tucker doggo
381 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphie. He's being treated for an ove... NaN NaN NaN https://twitter.com/dog_rates/status/827324948... 12 10 Ralphie doggo
382 827228250799742977 NaN NaN 2017-02-02 18:52:38 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Phil. He's an important... 6.946697e+17 4.196984e+09 2016-02-02 23:52:22 +0000 https://twitter.com/dog_rates/status/694669722... 12 10 Phil doggo
383 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wins every game of chess h... NaN NaN NaN https://twitter.com/dog_rates/status/827199976... 13 10 Charlie doggo
384 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He smiles like Elvis. Ain't noth... NaN NaN NaN https://twitter.com/dog_rates/status/826958653... 12 10 Loki doggo
385 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cupid. He was found in the trash. Now ... NaN NaN NaN https://twitter.com/dog_rates/status/826848821... 13 10 Cupid doggo
386 826615380357632002 NaN NaN 2017-02-01 02:17:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Please only send in dogs. We on... 8.099208e+17 4.196984e+09 2016-12-17 00:38:52 +0000 https://twitter.com/dog_rates/status/809920764... 10 10 None doggo
387 826598799820865537 8.265984e+17 4.196984e+09 2017-02-01 01:11:25 +0000 <a href="http://twitter.com/download/iphone" r... I was going to do 007/10, but the joke wasn't ... NaN NaN NaN NaN 7 10 None doggo
388 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pawnd... James Pawnd. He's suave af. 1... NaN NaN NaN https://twitter.com/dog_rates/status/826598365... 13 10 Pawnd doggo
389 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Pilot. He has mastered the synchronize... NaN NaN NaN https://twitter.com/dog_rates/status/826476773... 12 10 Pilot doggo
390 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any mo... NaN NaN NaN https://twitter.com/dog_rates/status/826240494... 11 10 None doggo
391 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a little more info on Dew, your favorit... NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentuc... 13 10 None doggo
392 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Ike. He's demonstrating the pupmost re... NaN NaN NaN https://twitter.com/dog_rates/status/826115272... 13 10 Ike doggo
393 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Mo. No one will push him around in the... NaN NaN NaN https://twitter.com/dog_rates/status/825876512... 11 10 Mo doggo
394 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He just found out you only prete... NaN NaN NaN https://twitter.com/dog_rates/status/825829644... 12 10 Toby doggo
395 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very loving and accepting puppo. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/825535076... 14 10 None doggo
396 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Sweet Pea. She hides in shoe boxes and... NaN NaN NaN https://twitter.com/dog_rates/status/825147591... 13 10 Sweet doggo
397 825120256414846976 NaN NaN 2017-01-27 23:16:13 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Pablo. He's one go... 8.250266e+17 4.196984e+09 2017-01-27 17:04:02 +0000 https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo doggo
398 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Pablo. He's one gorgeous puppo. A... NaN NaN NaN https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo doggo
399 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bailey. She loves going... 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730... 11 10 Bailey doggo
400 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter. His lack of opposable thumbs ... NaN NaN NaN https://twitter.com/dog_rates/status/824775126... 12 10 Scooter doggo
401 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. Named after the volleyball. He... NaN NaN NaN https://twitter.com/dog_rates/status/824663926... 13 10 Wilson doggo
402 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" r... Retweet the h*ck out of this 13/10 pupper #Bel... NaN NaN NaN https://twitter.com/dog_rates/status/824325613... 13 10 None doggo
403 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She got in trouble. One h*ck of ... NaN NaN NaN https://twitter.com/dog_rates/status/824297048... 11 10 Nala doggo
404 824025158776213504 NaN NaN 2017-01-24 22:44:42 +0000 <a href="http://twitter.com/download/iphone" r... "I wish we were dogs" 14/10 for @BadlandsNPS h... NaN NaN NaN https://twitter.com/badlandsnps/status/8239662... 14 10 None doggo
405 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cash. He's officially given pup on tod... NaN NaN NaN https://twitter.com/dog_rates/status/823939628... 12 10 Cash doggo
406 823719002937630720 NaN NaN 2017-01-24 02:28:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Balto. He's very conten... 7.840579e+17 4.196984e+09 2016-10-06 15:49:14 +0000 https://vine.co/v/5gKxeUpuKEr,https://vine.co/... 12 10 Balto doggo
407 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. The goggles make him a superh... NaN NaN NaN https://twitter.com/dog_rates/status/823699002... 12 10 Winston doggo
408 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Crawford. He's quite h*ckin good at th... NaN NaN NaN https://twitter.com/dog_rates/status/823581115... 11 10 Crawford doggo
409 823333489516937216 8.233264e+17 1.582854e+09 2017-01-23 00:56:15 +0000 <a href="http://twitter.com/download/iphone" r... @HistoryInPics 13/10 NaN NaN NaN NaN 13 10 None doggo
410 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He's got the fastest paws in th... NaN NaN NaN https://twitter.com/dog_rates/status/823322678... 11 10 Wyatt doggo
411 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Please don't... 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816... 11 10 None doggo
412 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's soaked as h*ck. Seems to h... NaN NaN NaN https://twitter.com/dog_rates/status/822975315... 12 10 Albus doggo
413 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super supportive puppo participating ... NaN NaN NaN https://twitter.com/dog_rates/status/822872901... 13 10 None doggo
414 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He was told he was going to th... NaN NaN NaN https://twitter.com/dog_rates/status/822859134... 12 10 Hobbes doggo
415 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paisley. She really wan... 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057... 13 10 Paisley doggo
416 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non-canines like this V... NaN NaN NaN https://twitter.com/dog_rates/status/822610361... 12 10 None doggo
417 822489057087389700 NaN NaN 2017-01-20 17:00:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She really wanted to be presi... NaN NaN NaN https://twitter.com/dog_rates/status/822489057... 13 10 Paisley doggo
418 822462944365645825 NaN NaN 2017-01-20 15:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He was the unequivocal embodimen... NaN NaN NaN https://twitter.com/dog_rates/status/822462944... 14 10 Gabe doggo
419 822244816520155136 NaN NaN 2017-01-20 00:50:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send pics of m... NaN NaN NaN https://twitter.com/dog_rates/status/822244816... 11 10 None doggo
420 822163064745328640 NaN NaN 2017-01-19 19:25:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Mattie. She's extremely... 7.862340e+17 4.196984e+09 2016-10-12 15:55:59 +0000 https://twitter.com/dog_rates/status/786233965... 11 10 Mattie doggo
421 821886076407029760 NaN NaN 2017-01-19 01:04:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimison. He was just called a good boy... NaN NaN NaN https://twitter.com/dog_rates/status/821886076... 13 10 Jimison doggo
422 821813639212650496 NaN NaN 2017-01-18 20:16:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Hercules. He can have what... 7.806013e+17 4.196984e+09 2016-09-27 02:53:48 +0000 https://twitter.com/dog_rates/status/780601303... 12 10 Hercules doggo
423 821765923262631936 NaN NaN 2017-01-18 17:07:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Duchess. She uses dark doggo forces to... NaN NaN NaN https://twitter.com/dog_rates/status/821765923... 13 10 Duchess doggo
424 821522889702862852 NaN NaN 2017-01-18 01:01:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Harlso. He has a really good idea but ... NaN NaN NaN https://twitter.com/dog_rates/status/821522889... 13 10 Harlso doggo
425 821421320206483457 NaN NaN 2017-01-17 18:17:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sampson. He just gradua... 7.823059e+17 4.196984e+09 2016-10-01 19:47:08 +0000 https://twitter.com/dog_rates/status/782305867... 12 10 Sampson doggo
426 821407182352777218 NaN NaN 2017-01-17 17:21:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Sundance. He's a doggo drummer. Even s... NaN NaN NaN https://twitter.com/dog_rates/status/821407182... 14 10 Sundance doggo
427 821153421864615936 8.211526e+17 1.132119e+08 2017-01-17 00:33:26 +0000 <a href="http://twitter.com/download/iphone" r... @imgur for a polar bear tho I'd say 13/10 is a... NaN NaN NaN NaN 13 10 None doggo
428 821149554670182400 NaN NaN 2017-01-17 00:18:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Luca. He got caught howling. H*ckin em... NaN NaN NaN https://twitter.com/dog_rates/status/821149554... 12 10 Luca doggo
429 821107785811234820 NaN NaN 2017-01-16 21:32:06 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo who looks like he's about to gi... NaN NaN NaN https://twitter.com/dog_rates/status/821107785... 11 10 None doggo
430 821044531881721856 NaN NaN 2017-01-16 17:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Flash. He went way too hard celebratin... NaN NaN NaN https://twitter.com/dog_rates/status/821044531... 12 10 Flash doggo
431 820837357901512704 NaN NaN 2017-01-16 03:37:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Finn. He's wondering if... 8.192277e+17 4.196984e+09 2017-01-11 17:01:16 +0000 https://twitter.com/dog_rates/status/819227688... 12 10 Finn doggo
432 820749716845686786 NaN NaN 2017-01-15 21:49:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sunny. He can take down a polar bear in o... NaN NaN NaN https://twitter.com/dog_rates/status/820749716... 13 10 Sunny doggo
433 820690176645140481 NaN NaN 2017-01-15 17:52:40 +0000 <a href="http://twitter.com/download/iphone" r... The floofs have been released I repeat the flo... NaN NaN NaN https://twitter.com/dog_rates/status/820690176... 84 70 None doggo
434 820494788566847489 NaN NaN 2017-01-15 04:56:16 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We are proud to support @LoveYo... 8.203146e+17 4.196984e+09 2017-01-14 17:00:24 +0000 https://www.loveyourmelon.com/pages/ourstory,h... 14 10 None doggo
435 820446719150292993 NaN NaN 2017-01-15 01:45:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Peaches. She's the ulti... 8.001414e+17 4.196984e+09 2016-11-20 00:59:15 +0000 https://twitter.com/dog_rates/status/800141422... 13 10 Peaches doggo
436 820314633777061888 NaN NaN 2017-01-14 17:00:24 +0000 <a href="http://twitter.com/download/iphone" r... We are proud to support @LoveYourMelon on thei... NaN NaN NaN https://www.loveyourmelon.com/pages/ourstory,h... 14 10 None doggo
437 820078625395449857 NaN NaN 2017-01-14 01:22:35 +0000 <a href="http://twitter.com/download/iphone" r... I've never wanted to go to a camp more in my e... NaN NaN NaN https://twitter.com/dog_rates/status/820078625... 12 10 None doggo
438 820013781606658049 NaN NaN 2017-01-13 21:04:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Oliver. He has dreams o... 8.199522e+17 4.196984e+09 2017-01-13 17:00:21 +0000 https://www.gofundme.com/servicedogoliver,http... 13 10 Oliver doggo
439 819952236453363712 NaN NaN 2017-01-13 17:00:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He has dreams of being a servi... NaN NaN NaN https://www.gofundme.com/servicedogoliver,http... 13 10 Oliver doggo
440 819924195358416896 NaN NaN 2017-01-13 15:08:56 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a doggo who has messed up. He was... NaN NaN NaN https://twitter.com/dog_rates/status/819924195... 11 10 None doggo
441 819711362133872643 NaN NaN 2017-01-13 01:03:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Howie. He just bloomed. 11/10 revoluti... NaN NaN NaN https://twitter.com/dog_rates/status/819711362... 11 10 Howie doggo
442 819588359383371776 NaN NaN 2017-01-12 16:54:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jazzy. She just found out that sandwic... NaN NaN NaN https://twitter.com/dog_rates/status/819588359... 13 10 Jazzy doggo
443 819347104292290561 NaN NaN 2017-01-12 00:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Anna and Elsa. They fall asleep i... NaN NaN NaN https://twitter.com/dog_rates/status/819347104... 12 10 Anna doggo
444 819238181065359361 NaN NaN 2017-01-11 17:42:57 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Some happy pupper news to share. 10/10 for eve... NaN NaN NaN http://us.blastingnews.com/news/2017/01/200-do... 10 10 None doggo
445 819227688460238848 NaN NaN 2017-01-11 17:01:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's wondering if you come here ... NaN NaN NaN https://twitter.com/dog_rates/status/819227688... 12 10 Finn doggo
446 819015337530290176 NaN NaN 2017-01-11 02:57:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo. He was a very good ... 8.190048e+17 4.196984e+09 2017-01-11 02:15:36 +0000 https://twitter.com/dog_rates/status/819004803... 14 10 Bo doggo
447 819015331746349057 NaN NaN 2017-01-11 02:57:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sunny. She was also a v... 8.190064e+17 4.196984e+09 2017-01-11 02:21:57 +0000 https://twitter.com/dog_rates/status/819006400... 14 10 Sunny doggo
448 819006400881917954 NaN NaN 2017-01-11 02:21:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunny. She was also a very good First ... NaN NaN NaN https://twitter.com/dog_rates/status/819006400... 14 10 Sunny doggo
449 819004803107983360 NaN NaN 2017-01-11 02:15:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He was a very good First Doggo. 14... NaN NaN NaN https://twitter.com/dog_rates/status/819004803... 14 10 Bo doggo
450 818646164899774465 NaN NaN 2017-01-10 02:30:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Seamus. He's very bad a... 8.083449e+17 4.196984e+09 2016-12-12 16:16:49 +0000 https://vine.co/v/5QWd3LZqXxd,https://vine.co/... 11 10 Seamus doggo
451 818627210458333184 NaN NaN 2017-01-10 01:15:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Wafer. He represents every fiber of my be... NaN NaN NaN https://twitter.com/dog_rates/status/818627210... 13 10 Wafer doggo
452 818614493328580609 NaN NaN 2017-01-10 00:24:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He's a passionate believer of th... NaN NaN NaN https://twitter.com/dog_rates/status/818614493... 12 10 Bear doggo
453 818588835076603904 NaN NaN 2017-01-09 22:42:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Chelsea. She forgot how... 7.735476e+17 4.196984e+09 2016-09-07 15:44:53 +0000 https://twitter.com/dog_rates/status/773547596... 11 10 Chelsea doggo
454 818536468981415936 NaN NaN 2017-01-09 19:14:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Tom. He's a silly dog. Known for his u... NaN NaN NaN https://twitter.com/dog_rates/status/818536468... 11 10 Tom doggo
455 818307523543449600 NaN NaN 2017-01-09 04:04:51 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Moose. He doesn't want his... 8.164506e+17 4.196984e+09 2017-01-04 01:05:59 +0000 https://twitter.com/dog_rates/status/816450570... 13 10 Moose doggo
456 818259473185828864 NaN NaN 2017-01-09 00:53:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Florence. He saw the same snap you sen... NaN NaN NaN https://twitter.com/dog_rates/status/818259473... 12 10 Florence doggo
457 818145370475810820 NaN NaN 2017-01-08 17:20:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Autumn. Her favorite toy is a cheesebu... NaN NaN NaN https://twitter.com/dog_rates/status/818145370... 11 10 Autumn doggo
458 817908911860748288 NaN NaN 2017-01-08 01:40:55 +0000 <a href="http://twitter.com/download/iphone" r... Looks like he went cross-eyed trying way too h... NaN NaN NaN https://twitter.com/micahgrimes/status/8179020... 12 10 None doggo
459 817827839487737858 NaN NaN 2017-01-07 20:18:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He ran into a glass door once. ... NaN NaN NaN https://twitter.com/dog_rates/status/817827839... 13 10 Buddy doggo
460 817777686764523521 NaN NaN 2017-01-07 16:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dido. She's playing the lead role in "... NaN NaN NaN https://twitter.com/dog_rates/status/817777686... 13 10 Dido doggo
461 817536400337801217 NaN NaN 2017-01-07 01:00:41 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Eugene &amp; Patti Melt. No matte... NaN NaN NaN https://twitter.com/dog_rates/status/817536400... 12 10 Eugene doggo
462 817502432452313088 NaN NaN 2017-01-06 22:45:43 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Herschel. He's slightly bi... 6.924173e+17 4.196984e+09 2016-01-27 18:42:06 +0000 https://twitter.com/dog_rates/status/692417313... 7 10 Herschel doggo
463 817423860136083457 NaN NaN 2017-01-06 17:33:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Ken. His cheeks are magic. 13/10 (IG: ... NaN NaN NaN https://twitter.com/dog_rates/status/817423860... 13 10 Ken doggo
464 817415592588222464 NaN NaN 2017-01-06 17:00:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Strudel. He's rather h*ckin pupset that y... NaN NaN NaN https://www.gofundme.com/help-strudel-walk-aga... 11 10 Strudel doggo
465 817181837579653120 NaN NaN 2017-01-06 01:31:47 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a pupper with squeaky hi... 8.159661e+17 4.196984e+09 2017-01-02 17:00:46 +0000 https://twitter.com/dog_rates/status/815966073... 13 10 None doggo
466 817171292965273600 NaN NaN 2017-01-06 00:49:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Tebow. He kindly requests that you put... NaN NaN NaN https://twitter.com/dog_rates/status/817171292... 13 10 Tebow doggo
467 817120970343411712 NaN NaN 2017-01-05 21:29:55 +0000 <a href="http://twitter.com/download/iphone" r... Name a more iconic quartet... I'll wait. 13/10... NaN NaN NaN https://twitter.com/dog_rates/status/817120970... 13 10 None doggo
468 817056546584727552 NaN NaN 2017-01-05 17:13:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Chloe. She fell asleep at the wheel. A... NaN NaN NaN https://twitter.com/dog_rates/status/817056546... 11 10 Chloe doggo
469 816829038950027264 NaN NaN 2017-01-05 02:09:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Betty. She's assisting ... 7.909461e+17 4.196984e+09 2016-10-25 16:00:09 +0000 https://twitter.com/dog_rates/status/790946055... 12 10 Betty doggo
470 816816676327063552 NaN NaN 2017-01-05 01:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Timber. He misses Christmas. Specifica... NaN NaN NaN https://twitter.com/dog_rates/status/816816676... 12 10 Timber doggo
471 816697700272001025 NaN NaN 2017-01-04 17:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Binky. She appears to be rather h*ckin... NaN NaN NaN https://twitter.com/dog_rates/status/816697700... 12 10 Binky doggo
472 816450570814898180 NaN NaN 2017-01-04 01:05:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Moose. He doesn't want his friend to go b... NaN NaN NaN https://twitter.com/dog_rates/status/816450570... 13 10 Moose doggo
473 816336735214911488 NaN NaN 2017-01-03 17:33:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dudley. He found a flower and now he's... NaN NaN NaN https://twitter.com/dog_rates/status/816336735... 11 10 Dudley doggo
474 816091915477250048 NaN NaN 2017-01-03 01:20:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Comet. He's a Wild Estonian Poofer. Su... NaN NaN NaN https://twitter.com/dog_rates/status/816091915... 12 10 Comet doggo
475 816062466425819140 NaN NaN 2017-01-02 23:23:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Jack. He's one of the rare... 8.159907e+17 4.196984e+09 2017-01-02 18:38:42 +0000 https://www.gofundme.com/surgeryforjacktheminp... 11 10 Jack doggo
476 816014286006976512 NaN NaN 2017-01-02 20:12:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Larry. He has no self c... 7.320056e+17 4.196984e+09 2016-05-16 00:31:53 +0000 https://twitter.com/dog_rates/status/732005617... 11 10 Larry doggo
477 815990720817401858 NaN NaN 2017-01-02 18:38:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jack. He's one of the rare doggos that do... NaN NaN NaN https://www.gofundme.com/surgeryforjacktheminp... 11 10 Jack doggo
478 815966073409433600 NaN NaN 2017-01-02 17:00:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with squeaky hiccups. Please e... NaN NaN NaN https://twitter.com/dog_rates/status/815966073... 13 10 None doggo
479 815745968457060357 NaN NaN 2017-01-02 02:26:09 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Levi. He's a Madag... 7.914070e+17 4.196984e+09 2016-10-26 22:31:36 +0000 https://twitter.com/dog_rates/status/791406955... 12 10 Levi doggo
480 815736392542261248 NaN NaN 2017-01-02 01:48:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Akumi. It's his birthday. He received ... NaN NaN NaN https://twitter.com/dog_rates/status/815736392... 11 10 Akumi doggo
481 815639385530101762 NaN NaN 2017-01-01 19:22:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Titan. His nose is quite chilly. Reque... NaN NaN NaN https://twitter.com/dog_rates/status/815639385... 12 10 Titan doggo
482 815390420867969024 NaN NaN 2017-01-01 02:53:20 +0000 <a href="http://twitter.com/download/iphone" r... Happy New Year from the squad! 13/10 for all h... NaN NaN NaN https://twitter.com/dog_rates/status/815390420... 13 10 None doggo
483 814986499976527872 NaN NaN 2016-12-31 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. Someone attacked him with a sh... NaN NaN NaN https://twitter.com/dog_rates/status/814986499... 11 10 Cooper doggo
484 814638523311648768 NaN NaN 2016-12-30 01:05:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Olivia. She's a passionate advocate of... NaN NaN NaN https://twitter.com/dog_rates/status/814638523... 12 10 Olivia doggo
485 814578408554463233 NaN NaN 2016-12-29 21:06:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Beau &amp; Wilbur. Wilbur ... 6.981954e+17 4.196984e+09 2016-02-12 17:22:12 +0000 https://twitter.com/dog_rates/status/698195409... 9 10 Beau doggo
486 814530161257443328 NaN NaN 2016-12-29 17:54:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Alf. Someone just rubbed a balloon on ... NaN NaN NaN https://twitter.com/dog_rates/status/814530161... 12 10 Alf doggo
487 814153002265309185 NaN NaN 2016-12-28 16:56:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Oshie. He's ready to party. Bought tha... NaN NaN NaN https://twitter.com/dog_rates/status/814153002... 12 10 Oshie doggo
488 813944609378369540 NaN NaN 2016-12-28 03:08:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bruce. He never backs d... 7.902771e+17 4.196984e+09 2016-10-23 19:42:02 +0000 https://twitter.com/dog_rates/status/790277117... 11 10 Bruce doggo
489 813910438903693312 NaN NaN 2016-12-28 00:52:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Chubbs. He dug a hole and now he's stu... NaN NaN NaN https://twitter.com/dog_rates/status/813910438... 11 10 Chubbs doggo
490 813812741911748608 NaN NaN 2016-12-27 18:24:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gary, Carrie Fisher's dog. Idk what I can... NaN NaN NaN https://twitter.com/dog_rates/status/813812741... 14 10 Gary doggo
491 813800681631023104 NaN NaN 2016-12-27 17:36:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Sky. She's learning how to roll her R'... NaN NaN NaN https://twitter.com/dog_rates/status/813800681... 12 10 Sky doggo
492 813217897535406080 NaN NaN 2016-12-26 03:00:30 +0000 <a href="http://twitter.com/download/iphone" r... Here is Atlas. He went all out this year. 13/1... NaN NaN NaN https://twitter.com/dog_rates/status/813217897... 13 10 Atlas doggo
493 813202720496779264 NaN NaN 2016-12-26 02:00:11 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo who has concluded that Christma... NaN NaN NaN https://twitter.com/dog_rates/status/813202720... 11 10 None doggo
494 813187593374461952 NaN NaN 2016-12-26 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in other ... NaN NaN NaN https://twitter.com/dog_rates/status/813187593... 13 10 None doggo
495 813172488309972993 NaN NaN 2016-12-26 00:00:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Eleanor. She winks like she knows many... NaN NaN NaN https://twitter.com/dog_rates/status/813172488... 12 10 Eleanor doggo
496 813157409116065792 NaN NaN 2016-12-25 23:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Layla. It is her first Christmas. She ... NaN NaN NaN https://twitter.com/dog_rates/status/813157409... 12 10 Layla doggo
497 813142292504645637 NaN NaN 2016-12-25 22:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Everybody stop what you're doing and look at t... NaN NaN NaN https://twitter.com/dog_rates/status/813142292... 13 10 None doggo
498 813130366689148928 8.131273e+17 4.196984e+09 2016-12-25 21:12:41 +0000 <a href="http://twitter.com/download/iphone" r... I've been informed by multiple sources that th... NaN NaN NaN NaN 12 10 None doggo
499 813127251579564032 NaN NaN 2016-12-25 21:00:18 +0000 <a href="http://twitter.com/download/iphone" r... Here's an anonymous doggo that appears to be v... NaN NaN NaN https://twitter.com/dog_rates/status/813127251... 11 10 None doggo
500 813112105746448384 NaN NaN 2016-12-25 20:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Toby. He's pupset because his hat isn't b... NaN NaN NaN https://twitter.com/dog_rates/status/813112105... 12 10 Toby doggo
501 813096984823349248 NaN NaN 2016-12-25 19:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Rocky. He got triple-doggo-dared. Stuc... NaN NaN NaN https://twitter.com/dog_rates/status/813096984... 11 10 Rocky doggo
502 813081950185472002 NaN NaN 2016-12-25 18:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Baron. He's officially festive as h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/813081950... 11 10 Baron doggo
503 813066809284972545 NaN NaN 2016-12-25 17:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyr. He is disgusted by holiday traffi... NaN NaN NaN https://twitter.com/dog_rates/status/813066809... 12 10 Tyr doggo
504 813051746834595840 NaN NaN 2016-12-25 16:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Bauer. He had nothing to do with the c... NaN NaN NaN https://twitter.com/dog_rates/status/813051746... 13 10 Bauer doggo
505 812781120811126785 NaN NaN 2016-12-24 22:04:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Swagger. He's the Cleveland Browns amb... NaN NaN NaN https://twitter.com/dog_rates/status/812781120... 10 10 Swagger doggo
506 812747805718642688 NaN NaN 2016-12-24 19:52:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Sammy. At first I was like... 6.800555e+17 4.196984e+09 2015-12-24 16:00:30 +0000 https://twitter.com/dog_rates/status/680055455... 10 10 Sammy doggo
507 812709060537683968 NaN NaN 2016-12-24 17:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Brandi and Harley. They are practicing... NaN NaN NaN https://twitter.com/dog_rates/status/812709060... 12 10 Brandi doggo
508 812503143955202048 NaN NaN 2016-12-24 03:40:19 +0000 <a href="http://twitter.com/download/iphone" r... I'm happy to inform you all that Jake is in ex... NaN NaN NaN https://m.facebook.com/story.php?story_fbid=18... 13 10 None doggo
509 812466873996607488 NaN NaN 2016-12-24 01:16:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Mary. She's desperately trying to recr... NaN NaN NaN https://twitter.com/dog_rates/status/812466873... 12 10 Mary doggo
510 812372279581671427 NaN NaN 2016-12-23 19:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Moe. He's a fetty woof. Got a cardboar... NaN NaN NaN https://twitter.com/dog_rates/status/812372279... 13 10 Moe doggo
511 811985624773361665 NaN NaN 2016-12-22 17:23:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Ted. He accidentally opened the f... NaN NaN NaN https://twitter.com/dog_rates/status/811985624... 11 10 Ted doggo
512 811744202451197953 NaN NaN 2016-12-22 01:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Halo. She likes watermelon. 13/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/811744202... 13 10 Halo doggo
513 811647686436880384 8.116272e+17 4.196984e+09 2016-12-21 19:01:02 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I've been informed that Augie was act... NaN NaN NaN NaN 11 10 None doggo
514 811627233043480576 NaN NaN 2016-12-21 17:39:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Augie. He's a savage. Doesn't give a h... NaN NaN NaN https://twitter.com/dog_rates/status/811627233... 10 10 Augie doggo
515 811386762094317568 NaN NaN 2016-12-21 01:44:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Craig. That's actually a normal sized ... NaN NaN NaN https://twitter.com/dog_rates/status/811386762... 11 10 Craig doggo
516 810984652412424192 NaN NaN 2016-12-19 23:06:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sam. She smiles 24/7 &amp; secretly aspir... NaN NaN NaN https://www.gofundme.com/sams-smile,https://tw... 24 7 Sam doggo
517 810896069567610880 NaN NaN 2016-12-19 17:14:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Hunter. He just found out he needs bra... NaN NaN NaN https://twitter.com/dog_rates/status/810896069... 11 10 Hunter doggo
518 810657578271330305 NaN NaN 2016-12-19 01:26:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pavlov. His floatation device has fail... NaN NaN NaN https://twitter.com/dog_rates/status/810657578... 11 10 Pavlov doggo
519 810284430598270976 NaN NaN 2016-12-18 00:43:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Phil. He's a father. A very good fathe... NaN NaN NaN https://twitter.com/dog_rates/status/810284430... 13 10 Phil doggo
520 810254108431155201 NaN NaN 2016-12-17 22:43:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He likes to be close to you, whic... NaN NaN NaN https://twitter.com/dog_rates/status/810254108... 12 10 Gus doggo
521 809920764300447744 NaN NaN 2016-12-17 00:38:52 +0000 <a href="http://twitter.com/download/iphone" r... Please only send in dogs. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/809920764... 10 10 None doggo
522 809808892968534016 NaN NaN 2016-12-16 17:14:20 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Maximus. His face is st... 7.939622e+17 4.196984e+09 2016-11-02 23:45:19 +0000 https://twitter.com/dog_rates/status/793962221... 12 10 Maximus doggo
523 809448704142938112 NaN NaN 2016-12-15 17:23:04 +0000 <a href="http://twitter.com/download/iphone" r... I call this one "A Blep by the Sea" 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/809448704... 12 10 None doggo
524 809220051211603969 NaN NaN 2016-12-15 02:14:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyro. He's a Stratocumulus Flop. Tongu... NaN NaN NaN https://twitter.com/dog_rates/status/809220051... 12 10 Kyro doggo
525 809084759137812480 NaN NaN 2016-12-14 17:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Wallace. You said you brushed your tee... NaN NaN NaN https://twitter.com/dog_rates/status/809084759... 11 10 Wallace doggo
526 808838249661788160 NaN NaN 2016-12-14 00:57:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Ito. He'll be your uber driver tonight... NaN NaN NaN https://twitter.com/dog_rates/status/808838249... 13 10 Ito doggo
527 808733504066486276 NaN NaN 2016-12-13 18:01:07 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper in a onesie. Quite pupset abou... NaN NaN NaN https://twitter.com/dog_rates/status/808733504... 12 10 None doggo
528 808501579447930884 NaN NaN 2016-12-13 02:39:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He dug a hole and then sat in it... NaN NaN NaN https://twitter.com/dog_rates/status/808501579... 12 10 Koda doggo
529 808344865868283904 NaN NaN 2016-12-12 16:16:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Seamus. He's very bad at entering pool... NaN NaN NaN https://vine.co/v/5QWd3LZqXxd 11 10 Seamus doggo
530 808134635716833280 NaN NaN 2016-12-12 02:21:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Milo. I would do terrib... 8.011679e+17 4.196984e+09 2016-11-22 20:58:07 +0000 https://twitter.com/dog_rates/status/801167903... 13 10 Milo doggo
531 808106460588765185 NaN NaN 2016-12-12 00:29:28 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Burke (pupper) and Dexter (doggo)... NaN NaN NaN https://twitter.com/dog_rates/status/808106460... 12 10 None doggo
532 808001312164028416 NaN NaN 2016-12-11 17:31:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He likes to stick his tongue o... NaN NaN NaN https://twitter.com/dog_rates/status/808001312... 12 10 Cooper doggo
533 807621403335917568 NaN NaN 2016-12-10 16:22:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ollie Vue. He was a 3 legged pupper on... NaN NaN NaN https://twitter.com/dog_rates/status/807621403... 14 10 Ollie doggo
534 807106840509214720 NaN NaN 2016-12-09 06:17:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Stephan. He just wants to help. 13/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/807106840... 13 10 Stephan doggo
535 807059379405148160 NaN NaN 2016-12-09 03:08:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Cali. She arrived preas... 7.829691e+17 4.196984e+09 2016-10-03 15:42:44 +0000 https://twitter.com/dog_rates/status/782969140... 12 10 Cali doggo
536 807010152071229440 NaN NaN 2016-12-08 23:53:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lennon. He's a Boopershnoop Pupperdoop... NaN NaN NaN https://twitter.com/dog_rates/status/807010152... 12 10 Lennon doggo
537 806629075125202948 NaN NaN 2016-12-07 22:38:52 +0000 <a href="http://twitter.com/download/iphone" r... "Good afternoon class today we're going to lea... NaN NaN NaN https://twitter.com/dog_rates/status/806629075... 13 10 None doggo
538 806620845233815552 NaN NaN 2016-12-07 22:06:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Idk why this keeps happening. W... 7.815247e+17 4.196984e+09 2016-09-29 16:03:01 +0000 https://twitter.com/dog_rates/status/781524693... 12 10 None doggo
539 806576416489959424 NaN NaN 2016-12-07 19:09:37 +0000 <a href="http://twitter.com/download/iphone" r... Hooman catch successful. Massive hit by dog. F... NaN NaN NaN https://twitter.com/deadspin/status/8065709331... 13 10 None doggo
540 806542213899489280 NaN NaN 2016-12-07 16:53:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's concerned that the dandr... NaN NaN NaN https://twitter.com/dog_rates/status/806542213... 11 10 Waffles doggo
541 806242860592926720 NaN NaN 2016-12-06 21:04:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Dave. He's currently in... 7.833346e+17 4.196984e+09 2016-10-04 15:55:06 +0000 https://twitter.com/dog_rates/status/783334639... 12 10 Dave doggo
542 806219024703037440 NaN NaN 2016-12-06 19:29:28 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please stop sending in non-... NaN NaN NaN https://twitter.com/dog_rates/status/806219024... 11 10 incredibly doggo
543 805958939288408065 NaN NaN 2016-12-06 02:15:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Penny. She fought a bee... 7.827226e+17 4.196984e+09 2016-10-02 23:23:04 +0000 https://twitter.com/dog_rates/status/782722598... 10 10 Penny doggo
544 805932879469572096 NaN NaN 2016-12-06 00:32:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Major. He put on a tie for his first r... NaN NaN NaN https://twitter.com/dog_rates/status/805932879... 12 10 Major doggo
545 805826884734976000 NaN NaN 2016-12-05 17:31:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He is not a fan of the pupporazz... NaN NaN NaN https://twitter.com/dog_rates/status/805826884... 12 10 Duke doggo
546 805823200554876929 NaN NaN 2016-12-05 17:16:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Reginald. He's one magi... 7.841832e+17 4.196984e+09 2016-10-07 00:06:50 +0000 https://vine.co/v/5ghHLBMMdlV,https://vine.co/... 12 10 Reginald doggo
547 805520635690676224 NaN NaN 2016-12-04 21:14:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke the Wonder Dog. He never let that... NaN NaN NaN https://twitter.com/dog_rates/status/805520635... 13 10 Zeke doggo
548 805487436403003392 NaN NaN 2016-12-04 19:02:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sansa and Gary. They run along the fence ... NaN NaN NaN https://twitter.com/dog_rates/status/805487436... 12 10 Sansa doggo
549 805207613751304193 NaN NaN 2016-12-04 00:30:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Shooter. He's doing quite the snowy zo... NaN NaN NaN https://twitter.com/dog_rates/status/805207613... 12 10 Shooter doggo
550 804738756058218496 NaN NaN 2016-12-02 17:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Django. He accidentally opened the fro... NaN NaN NaN https://twitter.com/dog_rates/status/804738756... 12 10 Django doggo
551 804475857670639616 NaN NaN 2016-12-02 00:02:45 +0000 <a href="http://twitter.com/download/iphone" r... HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13... NaN NaN NaN https://twitter.com/bvuepd/status/804417859124... 13 10 None doggo
552 804413760345620481 NaN NaN 2016-12-01 19:56:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rusty. He's going D1 fo... 7.848260e+17 4.196984e+09 2016-10-08 18:41:19 +0000 https://twitter.com/dog_rates/status/784826020... 13 10 Rusty doggo
553 804026241225523202 NaN NaN 2016-11-30 18:16:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's going to make me cry. 13/10 p... NaN NaN NaN https://twitter.com/dog_rates/status/804026241... 13 10 Bo doggo
554 803773340896923648 NaN NaN 2016-11-30 01:31:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Diogi. He fell in the pool as soon as ... NaN NaN NaN https://twitter.com/dog_rates/status/803773340... 12 10 Diogi doggo
555 803692223237865472 NaN NaN 2016-11-29 20:08:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I present to you... Dog Jesus. ... 6.914169e+17 4.196984e+09 2016-01-25 00:26:41 +0000 https://twitter.com/dog_rates/status/691416866... 13 10 None doggo
556 803638050916102144 NaN NaN 2016-11-29 16:33:36 +0000 <a href="http://twitter.com/download/iphone" r... Pupper hath acquire enemy. 13/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/803638050... 13 10 None doggo
557 803380650405482500 NaN NaN 2016-11-28 23:30:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sonny. He's an in-home movie critic. That... NaN NaN NaN https://twitter.com/dog_rates/status/803380650... 12 10 Sonny doggo
558 803321560782307329 NaN NaN 2016-11-28 19:35:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Philbert. His toilet br... 7.677549e+17 4.196984e+09 2016-08-22 16:06:54 +0000 https://twitter.com/dog_rates/status/767754930... 11 10 Philbert doggo
559 803276597545603072 NaN NaN 2016-11-28 16:37:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. His selfie game is legendary.... NaN NaN NaN https://twitter.com/dog_rates/status/803276597... 11 10 Winston doggo
560 802952499103731712 NaN NaN 2016-11-27 19:09:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She's having a ruff day. Prett... NaN NaN NaN https://twitter.com/dog_rates/status/802952499... 12 10 Marley doggo
561 802624713319034886 NaN NaN 2016-11-26 21:26:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Yep... just as I suspected. Yo... 7.776842e+17 4.196984e+09 2016-09-19 01:42:24 +0000 https://twitter.com/dog_rates/status/777684233... 12 10 None doggo
562 802600418706604034 NaN NaN 2016-11-26 19:50:26 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Bailey. She has mastered the head tilt... NaN NaN NaN https://vine.co/v/5FwUWjYaW0Y 11 10 Bailey doggo
563 802572683846291456 NaN NaN 2016-11-26 18:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She's h*ckin ferocious. Dandel... NaN NaN NaN https://twitter.com/dog_rates/status/802572683... 12 10 Winnie doggo
564 802323869084381190 NaN NaN 2016-11-26 01:31:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Severus. He's here to fix your cable. ... NaN NaN NaN https://twitter.com/dog_rates/status/802323869... 13 10 Severus doggo
565 802265048156610565 7.331095e+17 4.196984e+09 2016-11-25 21:37:47 +0000 <a href="http://twitter.com/download/iphone" r... Like doggo, like pupper version 2. Both 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/802265048... 11 10 None doggo
566 802247111496568832 NaN NaN 2016-11-25 20:26:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everybody drop what you're doin... 7.790561e+17 4.196984e+09 2016-09-22 20:33:42 +0000 https://twitter.com/dog_rates/status/779056095... 13 10 None doggo
567 802239329049477120 NaN NaN 2016-11-25 19:55:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He'll do your taxes for you. Can... NaN NaN NaN https://twitter.com/dog_rates/status/802239329... 12 10 Loki doggo
568 802185808107208704 NaN NaN 2016-11-25 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @ChinoChinako: They're good products, Brent... 8.000650e+17 2.488557e+07 2016-11-19 19:55:41 +0000 https://twitter.com/ChinoChinako/status/800065... 13 10 None doggo
569 801958328846974976 NaN NaN 2016-11-25 01:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ronnie. He hopes you're having a great... NaN NaN NaN https://twitter.com/dog_rates/status/801958328... 12 10 Ronnie doggo
570 801854953262350336 8.018543e+17 1.185634e+07 2016-11-24 18:28:13 +0000 <a href="http://twitter.com/download/iphone" r... .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE... NaN NaN NaN NaN 11 10 None doggo
571 801538201127157760 NaN NaN 2016-11-23 21:29:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Wallace. He'll be your chau-fur this e... NaN NaN NaN https://twitter.com/dog_rates/status/801538201... 12 10 Wallace doggo
572 801285448605831168 NaN NaN 2016-11-23 04:45:12 +0000 <a href="http://twitter.com/download/iphone" r... oh h*ck 10/10 https://t.co/bC69RrW559 NaN NaN NaN https://twitter.com/dog_rates/status/801285448... 10 10 None doggo
573 801167903437357056 NaN NaN 2016-11-22 20:58:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. I would do terrible things for M... NaN NaN NaN https://twitter.com/dog_rates/status/801167903... 13 10 Milo doggo
574 801127390143516673 NaN NaN 2016-11-22 18:17:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Anakin. He strives to r... 7.757333e+17 4.196984e+09 2016-09-13 16:30:07 +0000 https://twitter.com/dog_rates/status/775733305... 11 10 Anakin doggo
575 801115127852503040 NaN NaN 2016-11-22 17:28:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Bones. He's being haunted by another d... NaN NaN NaN https://twitter.com/dog_rates/status/801115127... 12 10 Bones doggo
576 800859414831898624 8.008580e+17 2.918590e+08 2016-11-22 00:32:18 +0000 <a href="http://twitter.com/download/iphone" r... @SkyWilliams doggo simply protecting you from ... NaN NaN NaN NaN 11 10 None doggo
577 800855607700029440 NaN NaN 2016-11-22 00:17:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @Lin_Manuel: 11/10 would recommend. https:/... 8.008540e+17 7.992370e+07 2016-11-22 00:10:52 +0000 https://twitter.com/littlewiewel/status/800852... 11 10 None doggo
578 800751577355128832 NaN NaN 2016-11-21 17:23:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mauve and Murphy. They're rather ... NaN NaN NaN https://twitter.com/dog_rates/status/800751577... 12 10 Mauve doggo
579 800513324630806528 NaN NaN 2016-11-21 01:37:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Chef. Chef loves everyone and wants ev... NaN NaN NaN https://twitter.com/dog_rates/status/800513324... 11 10 Chef doggo
580 800459316964663297 NaN NaN 2016-11-20 22:02:27 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very sleepy pupper. Appears to be por... NaN NaN NaN https://twitter.com/dog_rates/status/800459316... 12 10 None doggo
581 800443802682937345 NaN NaN 2016-11-20 21:00:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sampson. He's about to ... 7.761133e+17 4.196984e+09 2016-09-14 17:40:06 +0000 https://twitter.com/dog_rates/status/776113305... 11 10 Sampson doggo
582 800388270626521089 NaN NaN 2016-11-20 17:20:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Doc. He takes time out of every day to... NaN NaN NaN https://twitter.com/dog_rates/status/800388270... 12 10 Doc doggo
583 800188575492947969 NaN NaN 2016-11-20 04:06:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo. He's a Benedoop Cum... 6.816941e+17 4.196984e+09 2015-12-29 04:31:49 +0000 https://twitter.com/dog_rates/status/681694085... 11 10 Bo doggo
584 800141422401830912 NaN NaN 2016-11-20 00:59:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Peaches. She's the ultimate selfie sid... NaN NaN NaN https://twitter.com/dog_rates/status/800141422... 13 10 Peaches doggo
585 800018252395122689 NaN NaN 2016-11-19 16:49:49 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo doin a struggle. 11/10 much det... NaN NaN NaN https://twitter.com/dog_rates/status/800018252... 11 10 None doggo
586 799774291445383169 NaN NaN 2016-11-19 00:40:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Tucker. He would like a... 7.750851e+17 4.196984e+09 2016-09-11 21:34:30 +0000 https://twitter.com/dog_rates/status/775085132... 13 10 Tucker doggo
587 799757965289017345 NaN NaN 2016-11-18 23:35:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sobe. She's a h*ckin happy doggo. Only... NaN NaN NaN https://twitter.com/dog_rates/status/799757965... 13 10 Sobe doggo
588 799422933579902976 NaN NaN 2016-11-18 01:24:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Longfellow (prolly sophisticated). He'... NaN NaN NaN https://twitter.com/dog_rates/status/799422933... 12 10 Longfellow doggo
589 799308762079035393 NaN NaN 2016-11-17 17:50:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I WAS SENT THE ACTUAL DOG IN TH... 7.743144e+17 4.196984e+09 2016-09-09 18:31:54 +0000 https://twitter.com/dog_rates/status/774314403... 14 10 None doggo
590 799297110730567681 NaN NaN 2016-11-17 17:04:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He's quite the jokester. Take... NaN NaN NaN https://twitter.com/dog_rates/status/799297110... 11 10 Jeffrey doggo
591 799063482566066176 NaN NaN 2016-11-17 01:35:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Mister. He only wears the most fashion... NaN NaN NaN https://twitter.com/dog_rates/status/799063482... 11 10 Mister doggo
592 798933969379225600 NaN NaN 2016-11-16 17:01:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Iroh. He's in a predicament. 12/10 som... NaN NaN NaN https://twitter.com/dog_rates/status/798933969... 12 10 Iroh doggo
593 798925684722855936 NaN NaN 2016-11-16 16:28:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Shadow. He's a firm believer that they... NaN NaN NaN https://twitter.com/dog_rates/status/798925684... 11 10 Shadow doggo
594 798705661114773508 NaN NaN 2016-11-16 01:54:03 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Baloo. He's expecting a fa... 7.406770e+17 4.196984e+09 2016-06-08 22:48:46 +0000 https://twitter.com/dog_rates/status/740676976... 11 10 Baloo doggo
595 798701998996647937 NaN NaN 2016-11-16 01:39:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We normally don't rate marshmal... 7.186315e+17 4.196984e+09 2016-04-09 02:47:55 +0000 https://twitter.com/dog_rates/status/718631497... 10 10 None doggo
596 798697898615730177 NaN NaN 2016-11-16 01:23:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stubert. He just arrive... 7.128090e+17 4.196984e+09 2016-03-24 01:11:29 +0000 https://twitter.com/dog_rates/status/712809025... 10 10 Stubert doggo
597 798694562394996736 NaN NaN 2016-11-16 01:09:57 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I'm not sure what's happening h... 7.012147e+17 4.196984e+09 2016-02-21 01:19:47 +0000 https://twitter.com/dog_rates/status/701214700... 12 10 None doggo
598 798686750113755136 NaN NaN 2016-11-16 00:38:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Jack (pronounced "... 6.833919e+17 4.196984e+09 2016-01-02 20:58:09 +0000 https://twitter.com/dog_rates/status/683391852... 11 10 Jack doggo
599 798682547630837760 NaN NaN 2016-11-16 00:22:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here we see a rare pouched pupp... 6.769365e+17 4.196984e+09 2015-12-16 01:27:03 +0000 https://twitter.com/dog_rates/status/676936541... 8 10 None doggo
600 798673117451325440 NaN NaN 2016-11-15 23:44:44 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I shall call him squishy and he... 6.755011e+17 4.196984e+09 2015-12-12 02:23:01 +0000 https://twitter.com/dog_rates/status/675501075... 13 10 None doggo
601 798665375516884993 NaN NaN 2016-11-15 23:13:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lola. She fell asleep o... 6.718968e+17 4.196984e+09 2015-12-02 03:40:57 +0000 https://twitter.com/dog_rates/status/671896809... 10 10 Lola doggo
602 798644042770751489 NaN NaN 2016-11-15 21:49:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paull. He just stubbed ... 6.704450e+17 4.196984e+09 2015-11-28 03:31:48 +0000 https://twitter.com/dog_rates/status/670444955... 10 10 Paull doggo
603 798628517273620480 NaN NaN 2016-11-15 20:47:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This a Norwegian Pewterschmidt ... 6.675094e+17 4.196984e+09 2015-11-20 01:06:48 +0000 https://twitter.com/dog_rates/status/667509364... 12 10 None doggo
604 798585098161549313 NaN NaN 2016-11-15 17:54:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Timison. He just told a... 6.671828e+17 4.196984e+09 2015-11-19 03:29:07 +0000 https://twitter.com/dog_rates/status/667182792... 10 10 Timison doggo
605 798576900688019456 NaN NaN 2016-11-15 17:22:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Not familiar with this breed. N... 6.661041e+17 4.196984e+09 2015-11-16 04:02:55 +0000 https://twitter.com/dog_rates/status/666104133... 1 10 None doggo
606 798340744599797760 NaN NaN 2016-11-15 01:44:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Davey. He'll have your ... 7.717705e+17 4.196984e+09 2016-09-02 18:03:10 +0000 https://twitter.com/dog_rates/status/771770456... 11 10 Davey doggo
607 798209839306514432 NaN NaN 2016-11-14 17:03:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. His bow tie was too heavy for ... NaN NaN NaN https://twitter.com/dog_rates/status/798209839... 13 10 Cooper doggo
608 797971864723324932 NaN NaN 2016-11-14 01:18:12 +0000 <a href="http://twitter.com/download/iphone" r... Here's a helicopter pupper. He takes off at ra... NaN NaN NaN https://twitter.com/dog_rates/status/797971864... 12 10 None doggo
609 797545162159308800 NaN NaN 2016-11-12 21:02:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She steals things. Guilt incre... NaN NaN NaN https://twitter.com/dog_rates/status/797545162... 12 10 Cassie doggo
610 797236660651966464 NaN NaN 2016-11-12 00:36:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Pancake. She loves Batman and winks li... NaN NaN NaN https://twitter.com/dog_rates/status/797236660... 12 10 Pancake doggo
611 797165961484890113 7.971238e+17 2.916630e+07 2016-11-11 19:55:50 +0000 <a href="http://twitter.com/download/iphone" r... @JODYHiGHROLLER it may be an 11/10 but what do... NaN NaN NaN NaN 11 10 None doggo
612 796904159865868288 NaN NaN 2016-11-11 02:35:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Tyrone. He's a leaf wiz... 6.873173e+17 4.196984e+09 2016-01-13 16:56:30 +0000 https://twitter.com/dog_rates/status/687317306... 11 10 Tyrone doggo
613 796865951799083009 NaN NaN 2016-11-11 00:03:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyr. He's just checking on you. Nifty ... NaN NaN NaN https://twitter.com/dog_rates/status/796865951... 12 10 Tyr doggo
614 796759840936919040 NaN NaN 2016-11-10 17:02:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Romeo. He was just told that it's... NaN NaN NaN https://twitter.com/dog_rates/status/796759840... 11 10 Romeo doggo
615 796563435802726400 NaN NaN 2016-11-10 04:01:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I want to finally rate this ico... 7.809316e+17 4.196984e+09 2016-09-28 00:46:20 +0000 https://twitter.com/dog_rates/status/780931614... 13 10 None doggo
616 796484825502875648 NaN NaN 2016-11-09 22:49:15 +0000 <a href="http://twitter.com/download/iphone" r... Here's a sleepy doggo that requested some assi... NaN NaN NaN https://twitter.com/dog_rates/status/796484825... 12 10 None doggo
617 796387464403357696 NaN NaN 2016-11-09 16:22:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snicku. He's having trouble reading be... NaN NaN NaN https://twitter.com/dog_rates/status/796387464... 12 10 Snicku doggo
618 796177847564038144 NaN NaN 2016-11-09 02:29:25 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ruby. She just turned o... 7.961497e+17 4.196984e+09 2016-11-09 00:37:46 +0000 https://twitter.com/dog_rates/status/796149749... 11 10 Ruby doggo
619 796149749086875649 NaN NaN 2016-11-09 00:37:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She just turned on the news. Off... NaN NaN NaN https://twitter.com/dog_rates/status/796149749... 11 10 Ruby doggo
620 796125600683540480 NaN NaN 2016-11-08 23:01:49 +0000 <a href="http://twitter.com/download/iphone" r... #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 NaN NaN NaN https://twitter.com/king5seattle/status/796123... 13 10 None doggo
621 796116448414461957 NaN NaN 2016-11-08 22:25:27 +0000 <a href="http://twitter.com/download/iphone" r... I didn't believe it at first but now I can see... NaN NaN NaN https://twitter.com/dog_rates/status/796116448... 11 10 None doggo
622 796080075804475393 NaN NaN 2016-11-08 20:00:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Yogi. He's 98% floof. Snuggable af. 12... NaN NaN NaN https://twitter.com/dog_rates/status/796080075... 12 10 Yogi doggo
623 796031486298386433 NaN NaN 2016-11-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's here to make your day bet... NaN NaN NaN https://twitter.com/dog_rates/status/796031486... 13 10 Daisy doggo
624 795464331001561088 NaN NaN 2016-11-07 03:14:10 +0000 <a href="http://twitter.com/download/iphone" r... Elder doggo does a splash. Both 13/10 incredib... NaN NaN NaN https://twitter.com/dog_rates/status/795464331... 13 10 None doggo
625 795400264262053889 NaN NaN 2016-11-06 22:59:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. He's trying to make the same fa... NaN NaN NaN https://twitter.com/dog_rates/status/795400264... 12 10 Brody doggo
626 795076730285391872 NaN NaN 2016-11-06 01:33:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She loves going down slides bu... NaN NaN NaN https://twitter.com/dog_rates/status/795076730... 11 10 Bailey doggo
627 794983741416415232 NaN NaN 2016-11-05 19:24:28 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rizzy. She smiles a lot... 7.895309e+17 4.196984e+09 2016-10-21 18:16:44 +0000 https://twitter.com/dog_rates/status/789530877... 12 10 Rizzy doggo
628 794926597468000259 NaN NaN 2016-11-05 15:37:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Mack. He's rather h*ckin sleepy. Excep... NaN NaN NaN https://twitter.com/dog_rates/status/794926597... 12 10 Mack doggo
629 794355576146903043 NaN NaN 2016-11-04 01:48:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Butter. She can have wh... 7.887659e+17 4.196984e+09 2016-10-19 15:37:03 +0000 https://twitter.com/dog_rates/status/788765914... 12 10 Butter doggo
630 794332329137291264 NaN NaN 2016-11-04 00:15:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Nimbus (like the cloud). He just bough... NaN NaN NaN https://twitter.com/dog_rates/status/794332329... 12 10 Nimbus doggo
631 794205286408003585 NaN NaN 2016-11-03 15:51:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Laika. She was a space pupper. The fir... NaN NaN NaN https://twitter.com/dog_rates/status/794205286... 14 10 Laika doggo
632 793962221541933056 NaN NaN 2016-11-02 23:45:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Maximus. His face is stuck like that. ... NaN NaN NaN https://twitter.com/dog_rates/status/793962221... 12 10 Maximus doggo
633 793845145112371200 NaN NaN 2016-11-02 16:00:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He was just caught wearing pant... NaN NaN NaN https://twitter.com/dog_rates/status/793845145... 13 10 Clark doggo
634 793614319594401792 NaN NaN 2016-11-02 00:42:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: When she says you're a good boy... 7.916723e+17 4.196984e+09 2016-10-27 16:06:04 +0000 https://twitter.com/dog_rates/status/791672322... 13 10 None doggo
635 793601777308463104 NaN NaN 2016-11-01 23:53:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Dobby. I can't stop looking at her fee... NaN NaN NaN https://twitter.com/dog_rates/status/793601777... 12 10 Dobby doggo
636 793500921481273345 NaN NaN 2016-11-01 17:12:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an extremely mediocre cop... NaN NaN NaN https://twitter.com/dog_rates/status/793500921... 12 10 Fiona doggo
637 793286476301799424 NaN NaN 2016-11-01 03:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Moreton. He's the Good Boy Who Lived. ... NaN NaN NaN https://twitter.com/dog_rates/status/793286476... 13 10 Moreton doggo
638 793271401113350145 NaN NaN 2016-11-01 02:00:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dave. It's his favorite day of the year. ... NaN NaN NaN https://twitter.com/dog_rates/status/793271401... 12 10 Dave doggo
639 793256262322548741 NaN NaN 2016-11-01 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... Oh h*ck look at this spookling right here. Fri... NaN NaN NaN https://twitter.com/dog_rates/status/793256262... 12 10 None doggo
640 793241302385262592 NaN NaN 2016-11-01 00:00:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's out here bustin h*ckin gh... NaN NaN NaN https://twitter.com/dog_rates/status/793241302... 13 10 Tucker doggo
641 793226087023144960 NaN NaN 2016-10-31 23:00:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Juno. She spooked me up real good, but... NaN NaN NaN https://twitter.com/dog_rates/status/793226087... 11 10 Juno doggo
642 793210959003287553 NaN NaN 2016-10-31 22:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Maude. She's the h*ckin happiest wasp ... NaN NaN NaN https://twitter.com/dog_rates/status/793210959... 10 10 Maude doggo
643 793195938047070209 NaN NaN 2016-10-31 21:00:23 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lily. She's pupset that her costu... NaN NaN NaN https://twitter.com/dog_rates/status/793195938... 12 10 Lily doggo
644 793180763617361921 NaN NaN 2016-10-31 20:00:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Newt. He's a strawberry. 11/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/793180763... 11 10 Newt doggo
645 793165685325201412 NaN NaN 2016-10-31 19:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Benji. He's Air Bud. It's a low effort... NaN NaN NaN https://twitter.com/dog_rates/status/793165685... 12 10 Benji doggo
646 793150605191548928 NaN NaN 2016-10-31 18:00:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Nida. She's a free elf. Waited so long... NaN NaN NaN https://twitter.com/dog_rates/status/793150605... 11 10 Nida doggo
647 793135492858580992 NaN NaN 2016-10-31 17:00:11 +0000 <a href="http://twitter.com/download/iphone" r... Your favorite squad is looking extra h*ckin sp... NaN NaN NaN https://twitter.com/dog_rates/status/793135492... 13 10 None doggo
648 793120401413079041 NaN NaN 2016-10-31 16:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Robin. She's desperately trying to do ... NaN NaN NaN https://twitter.com/dog_rates/status/793120401... 11 10 Robin doggo
649 792913359805018113 NaN NaN 2016-10-31 02:17:31 +0000 <a href="http://twitter.com/download/iphone" r... Here is a perfect example of someone who has t... NaN NaN NaN https://twitter.com/dog_rates/status/792913359... 13 10 a doggo
650 792883833364439040 NaN NaN 2016-10-31 00:20:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She's rather h*ckin hype for H... NaN NaN NaN https://twitter.com/dog_rates/status/792883833... 12 10 Bailey doggo
651 792773781206999040 NaN NaN 2016-10-30 17:02:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Monster. Not an actual monster tho. He... NaN NaN NaN https://twitter.com/dog_rates/status/792773781... 12 10 Monster doggo
652 792394556390137856 NaN NaN 2016-10-29 15:55:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet BeBe. She rocks the messy bun of your dre... NaN NaN NaN https://twitter.com/dog_rates/status/792394556... 12 10 BeBe doggo
653 792050063153438720 NaN NaN 2016-10-28 17:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Remus. He's a mop that came to life. C... NaN NaN NaN https://twitter.com/dog_rates/status/792050063... 11 10 Remus doggo
654 791821351946420224 NaN NaN 2016-10-28 01:58:16 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This little fella really hates ... 6.848310e+17 4.196984e+09 2016-01-06 20:16:44 +0000 https://vine.co/v/eEZXZI1rqxX,https://vine.co/... 13 10 None doggo
655 791784077045166082 NaN NaN 2016-10-27 23:30:09 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I'm not sure what this dog is d... 6.820881e+17 4.196984e+09 2015-12-30 06:37:25 +0000 https://vine.co/v/iqMjlxULzbn,https://vine.co/... 12 10 None doggo
656 791780927877898241 NaN NaN 2016-10-27 23:17:38 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Maddie. She gets some w... 7.467577e+17 4.196984e+09 2016-06-25 17:31:25 +0000 https://vine.co/v/5BYq6hmrEI3,https://vine.co/... 11 10 Maddie doggo
657 791774931465953280 NaN NaN 2016-10-27 22:53:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Vine will be deeply missed. This was by far my... NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 14 10 None doggo
658 791672322847637504 NaN NaN 2016-10-27 16:06:04 +0000 <a href="http://twitter.com/download/iphone" r... When she says you're a good boy and you know y... NaN NaN NaN https://twitter.com/dog_rates/status/791672322... 13 10 None doggo
659 791406955684368384 NaN NaN 2016-10-26 22:31:36 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Levi. He's a Madagascan Butterbop... NaN NaN NaN https://twitter.com/dog_rates/status/791406955... 12 10 Levi doggo
660 791312159183634433 NaN NaN 2016-10-26 16:14:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Mabel. She's super h*ckin smol. Portab... NaN NaN NaN https://twitter.com/dog_rates/status/791312159... 12 10 Mabel doggo
661 791026214425268224 NaN NaN 2016-10-25 21:18:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Alfie. He's touching a ... 7.638376e+17 4.196984e+09 2016-08-11 20:40:41 +0000 https://twitter.com/dog_rates/status/763837565... 11 10 Alfie doggo
662 790987426131050500 NaN NaN 2016-10-25 18:44:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Misty. She has a cowboy hat on her nos... NaN NaN NaN https://twitter.com/dog_rates/status/790987426... 12 10 Misty doggo
663 790946055508652032 NaN NaN 2016-10-25 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Betty. She's assisting with the dishes... NaN NaN NaN https://twitter.com/dog_rates/status/790946055... 12 10 Betty doggo
664 790723298204217344 NaN NaN 2016-10-25 01:14:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Happy. He's a bathtub r... 7.899865e+17 4.196984e+09 2016-10-23 00:27:05 +0000 https://twitter.com/dog_rates/status/789986466... 12 10 Happy doggo
665 790698755171364864 NaN NaN 2016-10-24 23:37:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mosby. He appears to be rather h*ckin ... NaN NaN NaN https://twitter.com/dog_rates/status/790698755... 12 10 Mosby doggo
666 790581949425475584 NaN NaN 2016-10-24 15:53:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He sneaks into the fridge someti... NaN NaN NaN https://twitter.com/dog_rates/status/790581949... 11 10 Duke doggo
667 790337589677002753 NaN NaN 2016-10-23 23:42:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She can hear your cells divide. 1... NaN NaN NaN https://twitter.com/dog_rates/status/790337589... 12 10 Maggie doggo
668 790277117346975746 NaN NaN 2016-10-23 19:42:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. He never backs down from a chal... NaN NaN NaN https://twitter.com/dog_rates/status/790277117... 11 10 Bruce doggo
669 790227638568808452 NaN NaN 2016-10-23 16:25:25 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Leela. She's a Fetty Wo... 7.626999e+17 4.196984e+09 2016-08-08 17:19:51 +0000 https://twitter.com/dog_rates/status/762699858... 11 10 Leela doggo
670 789986466051088384 NaN NaN 2016-10-23 00:27:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Happy. He's a bathtub reviewer. Seems ... NaN NaN NaN https://twitter.com/dog_rates/status/789986466... 12 10 Happy doggo
671 789960241177853952 NaN NaN 2016-10-22 22:42:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Buddy. His father was a... 7.624645e+17 4.196984e+09 2016-08-08 01:44:46 +0000 https://twitter.com/dog_rates/status/762464539... 12 10 Buddy doggo
672 789903600034189313 NaN NaN 2016-10-22 18:57:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ralphy. His dreams were just shattered... NaN NaN NaN https://vine.co/v/5wPT1aBxPQZ 13 10 Ralphy doggo
673 789628658055020548 NaN NaN 2016-10-22 00:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He can fly. 13/10 magical af http... NaN NaN NaN https://twitter.com/dog_rates/status/789628658... 13 10 Eli doggo
674 789599242079838210 NaN NaN 2016-10-21 22:48:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Brownie. She's wearing a Halloween the... NaN NaN NaN https://twitter.com/dog_rates/status/789599242... 12 10 Brownie doggo
675 789530877013393408 NaN NaN 2016-10-21 18:16:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Rizzy. She smiles a lot. 12/10 contagi... NaN NaN NaN https://twitter.com/dog_rates/status/789530877... 12 10 Rizzy doggo
676 789314372632018944 NaN NaN 2016-10-21 03:56:25 +0000 <a href="http://twitter.com/download/iphone" r... HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOO... NaN NaN NaN https://twitter.com/sebscat/status/78881832853... 13 10 None doggo
677 789280767834746880 NaN NaN 2016-10-21 01:42:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Meyer. He has to hold s... 7.507196e+17 4.196984e+09 2016-07-06 15:54:42 +0000 https://twitter.com/dog_rates/status/750719632... 12 10 Meyer doggo
678 789268448748703744 NaN NaN 2016-10-21 00:53:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Stella. She's happier than I will ever... NaN NaN NaN https://twitter.com/dog_rates/status/789268448... 10 10 Stella doggo
679 789137962068021249 NaN NaN 2016-10-20 16:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's a West Congolese Bugaboop Snu... NaN NaN NaN https://twitter.com/dog_rates/status/789137962... 12 10 Bo doggo
680 788908386943430656 NaN NaN 2016-10-20 01:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She destroyed not one, but two r... NaN NaN NaN https://twitter.com/dog_rates/status/788908386... 11 10 Lucy doggo
681 788765914992902144 NaN NaN 2016-10-19 15:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Butter. She can have whatever she want... NaN NaN NaN https://twitter.com/dog_rates/status/788765914... 12 10 Butter doggo
682 788552643979468800 NaN NaN 2016-10-19 01:29:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to mad pupper. You kn... 7.363926e+17 4.196984e+09 2016-05-28 03:04:00 +0000 https://vine.co/v/iEggaEOiLO3,https://vine.co/... 13 10 mad doggo
683 788412144018661376 NaN NaN 2016-10-18 16:11:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He breaks hearts for a living.... NaN NaN NaN https://twitter.com/dog_rates/status/788412144... 11 10 Dexter doggo
684 788178268662984705 NaN NaN 2016-10-18 00:41:57 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's got doggles. ... NaN NaN NaN https://twitter.com/dog_rates/status/788178268... 13 10 None doggo
685 788150585577050112 NaN NaN 2016-10-17 22:51:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a golden chow. Rather h*ckin... NaN NaN NaN https://twitter.com/dog_rates/status/788150585... 13 10 Leo doggo
686 788070120937619456 NaN NaN 2016-10-17 17:32:13 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo and Ty. Bo eats pape... 7.610045e+17 4.196984e+09 2016-08-04 01:03:17 +0000 https://twitter.com/dog_rates/status/761004547... 11 10 Bo doggo
687 788039637453406209 NaN NaN 2016-10-17 15:31:05 +0000 <a href="http://twitter.com/download/iphone" r... Did... did they pick out that license plate? 1... NaN NaN NaN https://twitter.com/dog_rates/status/788039637... 12 10 None doggo
688 787810552592695296 NaN NaN 2016-10-17 00:20:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Frank. He wears sunglasses and walks h... NaN NaN NaN https://twitter.com/dog_rates/status/787810552... 11 10 Frank doggo
689 787717603741622272 NaN NaN 2016-10-16 18:11:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Tonks. She is a service puppo. Can hea... NaN NaN NaN https://twitter.com/dog_rates/status/787717603... 13 10 Tonks doggo
690 787397959788929025 NaN NaN 2016-10-15 21:01:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Moose. He's rather h*ckin dangerous (y... NaN NaN NaN https://twitter.com/dog_rates/status/787397959... 11 10 Moose doggo
691 787322443945877504 NaN NaN 2016-10-15 16:01:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Lincoln. He forgot to use his blinker ... NaN NaN NaN https://twitter.com/dog_rates/status/787322443... 10 10 Lincoln doggo
692 787111942498508800 NaN NaN 2016-10-15 02:04:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Carl. He's very powerfu... 7.529324e+17 4.196984e+09 2016-07-12 18:27:35 +0000 https://vine.co/v/OEppMFbejFz,https://vine.co/... 12 10 Carl doggo
693 786963064373534720 NaN NaN 2016-10-14 16:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rory. He's got an interview in a few m... NaN NaN NaN https://twitter.com/dog_rates/status/786963064... 12 10 Rory doggo
694 786729988674449408 NaN NaN 2016-10-14 00:47:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Oakley. He has no idea ... 7.594477e+17 4.196984e+09 2016-07-30 17:56:51 +0000 https://twitter.com/dog_rates/status/759447681... 11 10 Oakley doggo
695 786709082849828864 NaN NaN 2016-10-13 23:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Logan, the Chow who lived. He solemnly... NaN NaN NaN https://twitter.com/dog_rates/status/786709082... 75 10 Logan doggo
696 786664955043049472 NaN NaN 2016-10-13 20:28:35 +0000 <a href="http://twitter.com/download/iphone" r... "Honestly Kathleen I just want more Ken Bone" ... NaN NaN NaN https://twitter.com/dog_rates/status/786664955... 12 10 None doggo
697 786595970293370880 NaN NaN 2016-10-13 15:54:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dale. He's a real spookster. Did me qu... NaN NaN NaN https://twitter.com/dog_rates/status/786595970... 11 10 Dale doggo
698 786363235746385920 NaN NaN 2016-10-13 00:29:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Rizzo. He has many talents. A true ren... NaN NaN NaN https://twitter.com/dog_rates/status/786363235... 13 10 Rizzo doggo
699 786286427768250368 NaN NaN 2016-10-12 19:24:27 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Arnie. He's afraid of his own bark. 12... NaN NaN NaN https://vine.co/v/5XH0WqHwiFp 12 10 Arnie doggo
700 786233965241827333 NaN NaN 2016-10-12 15:55:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Mattie. She's extremely dangerous. Wil... NaN NaN NaN https://twitter.com/dog_rates/status/786233965... 11 10 Mattie doggo
701 786051337297522688 7.727430e+17 7.305050e+17 2016-10-12 03:50:17 +0000 <a href="http://twitter.com/download/iphone" r... 13/10 for breakdancing puppo @shibbnbot NaN NaN NaN NaN 13 10 None doggo
702 786036967502913536 NaN NaN 2016-10-12 02:53:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Scout. He really wants ... 7.798343e+17 4.196984e+09 2016-09-25 00:06:08 +0000 https://twitter.com/dog_rates/status/779834332... 11 10 Scout doggo
703 785927819176054784 NaN NaN 2016-10-11 19:39:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's strives to be the best pot... NaN NaN NaN https://twitter.com/dog_rates/status/785927819... 12 10 Lucy doggo
704 785872687017132033 NaN NaN 2016-10-11 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. He appears to be rather h*ckin flu... NaN NaN NaN https://twitter.com/dog_rates/status/785872687... 12 10 Rusty doggo
705 785639753186217984 NaN NaN 2016-10-11 00:34:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Pinot. He's a sophisticated doggo. You... NaN NaN NaN https://twitter.com/dog_rates/status/785639753... 10 10 Pinot doggo
706 785533386513321988 NaN NaN 2016-10-10 17:32:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Dallas. Her tongue is ridiculous. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/785533386... 11 10 Dallas doggo
707 785515384317313025 NaN NaN 2016-10-10 16:20:36 +0000 <a href="http://twitter.com/download/iphone" r... Today, 10/10, should be National Dog Rates Day NaN NaN NaN NaN 10 10 None doggo
708 785264754247995392 NaN NaN 2016-10-09 23:44:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Doc. He requested to be carried around... NaN NaN NaN https://twitter.com/dog_rates/status/785264754... 12 10 Doc doggo
709 785170936622350336 NaN NaN 2016-10-09 17:31:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Hero. He was enjoying the car ride unt... NaN NaN NaN https://twitter.com/dog_rates/status/785170936... 11 10 Hero doggo
710 784826020293709826 NaN NaN 2016-10-08 18:41:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He's going D1 for sure. Insane ... NaN NaN NaN https://twitter.com/dog_rates/status/784826020... 13 10 Rusty doggo
711 784517518371221505 NaN NaN 2016-10-07 22:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Frankie. He has yet to learn how to co... NaN NaN NaN https://twitter.com/dog_rates/status/784517518... 11 10 Frankie doggo
712 784431430411685888 NaN NaN 2016-10-07 16:33:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Stormy. He's curly af. Already pupared... NaN NaN NaN https://twitter.com/dog_rates/status/784431430... 12 10 Stormy doggo
713 784183165795655680 NaN NaN 2016-10-07 00:06:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Reginald. He's one magical puppo. Aero... NaN NaN NaN https://vine.co/v/5ghHLBMMdlV 12 10 Reginald doggo
714 784057939640352768 NaN NaN 2016-10-06 15:49:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Balto. He's very content. Legendary to... NaN NaN NaN https://vine.co/v/5gKxeUpuKEr 12 10 Balto doggo
715 783839966405230592 NaN NaN 2016-10-06 01:23:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. His owner put a donut pillow ar... NaN NaN NaN https://twitter.com/dog_rates/status/783839966... 13 10 Riley doggo
716 783821107061198850 NaN NaN 2016-10-06 00:08:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Mairi. She has mastered the art of cam... NaN NaN NaN https://twitter.com/dog_rates/status/783821107... 12 10 Mairi doggo
717 783695101801398276 NaN NaN 2016-10-05 15:47:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Loomis. He's the leader of the Kenneth... NaN NaN NaN https://twitter.com/dog_rates/status/783695101... 12 10 Loomis doggo
718 783466772167098368 NaN NaN 2016-10-05 00:40:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He likes eavesdropping from fili... NaN NaN NaN https://twitter.com/dog_rates/status/783466772... 11 10 Finn doggo
719 783391753726550016 NaN NaN 2016-10-04 19:42:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Godi. He's an avid beachgoer and part tim... NaN NaN NaN https://twitter.com/dog_rates/status/783391753... 13 10 Godi doggo
720 783347506784731136 NaN NaN 2016-10-04 16:46:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Kenny. He just wants to... 6.742918e+17 4.196984e+09 2015-12-08 18:17:56 +0000 https://twitter.com/dog_rates/status/674291837... 11 10 Kenny doggo
721 783334639985389568 NaN NaN 2016-10-04 15:55:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He's currently in a predicament.... NaN NaN NaN https://twitter.com/dog_rates/status/783334639... 12 10 Dave doggo
722 783085703974514689 NaN NaN 2016-10-03 23:25:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He can't catch. Did his best tho... NaN NaN NaN https://twitter.com/dog_rates/status/783085703... 11 10 Earl doggo
723 782969140009107456 NaN NaN 2016-10-03 15:42:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Cali. She arrived preassembled. Conven... NaN NaN NaN https://twitter.com/dog_rates/status/782969140... 12 10 Cali doggo
724 782747134529531904 NaN NaN 2016-10-03 01:00:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Deacon. He's the happiest almost dry d... NaN NaN NaN https://twitter.com/dog_rates/status/782747134... 11 10 Deacon doggo
725 782722598790725632 NaN NaN 2016-10-02 23:23:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She fought a bee and the bee wo... NaN NaN NaN https://twitter.com/dog_rates/status/782722598... 10 10 Penny doggo
726 782598640137187329 NaN NaN 2016-10-02 15:10:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Timmy. He's quite large. According to ... NaN NaN NaN https://twitter.com/dog_rates/status/782598640... 11 10 Timmy doggo
727 782305867769217024 NaN NaN 2016-10-01 19:47:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Sampson. He just graduated. Ready to b... NaN NaN NaN https://twitter.com/dog_rates/status/782305867... 12 10 Sampson doggo
728 782021823840026624 NaN NaN 2016-10-01 00:58:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Harper. She scraped her... 7.076109e+17 4.196984e+09 2016-03-09 16:56:11 +0000 https://twitter.com/dog_rates/status/707610948... 12 10 Harper doggo
729 781955203444699136 NaN NaN 2016-09-30 20:33:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Chipson. He weighed in at .3 ounces an... NaN NaN NaN https://twitter.com/dog_rates/status/781955203... 11 10 Chipson doggo
730 781661882474196992 NaN NaN 2016-09-30 01:08:10 +0000 <a href="http://twitter.com/download/iphone" r... Who keeps sending in pictures without dogs in ... NaN NaN NaN https://twitter.com/dog_rates/status/781661882... 5 10 None doggo
731 781655249211752448 NaN NaN 2016-09-30 00:41:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Combo. The daily struggles of being a ... NaN NaN NaN https://vine.co/v/5rt6T3qm7hL 11 10 Combo doggo
732 781524693396357120 NaN NaN 2016-09-29 16:03:01 +0000 <a href="http://twitter.com/download/iphone" r... Idk why this keeps happening. We only rate dog... NaN NaN NaN https://twitter.com/dog_rates/status/781524693... 12 10 None doggo
733 781308096455073793 NaN NaN 2016-09-29 01:42:20 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Pupper butt 1, Doggo 0. Both 12/10 https://t.c... NaN NaN NaN https://vine.co/v/5rgu2Law2ut 12 10 None doggo
734 781251288990355457 NaN NaN 2016-09-28 21:56:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He just got yelled at for goin... NaN NaN NaN https://twitter.com/dog_rates/status/781251288... 11 10 Oakley doggo
735 781163403222056960 NaN NaN 2016-09-28 16:07:23 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate lobsters, but this one ... NaN NaN NaN https://twitter.com/dog_rates/status/781163403... 10 10 None doggo
736 780931614150983680 NaN NaN 2016-09-28 00:46:20 +0000 <a href="http://twitter.com/download/iphone" r... I want to finally rate this iconic puppo who t... NaN NaN NaN https://twitter.com/dog_rates/status/780931614... 13 10 None doggo
737 780858289093574656 NaN NaN 2016-09-27 19:54:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Dash. He's very stylish, but also incr... NaN NaN NaN https://twitter.com/dog_rates/status/780858289... 10 10 Dash doggo
738 780800785462489090 NaN NaN 2016-09-27 16:06:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He has a weird relationship with... NaN NaN NaN https://twitter.com/dog_rates/status/780800785... 11 10 Koda doggo
739 780601303617732608 NaN NaN 2016-09-27 02:53:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hercules. He can have whatever he wants f... NaN NaN NaN https://twitter.com/dog_rates/status/780601303... 12 10 Hercules doggo
740 780543529827336192 NaN NaN 2016-09-26 23:04:13 +0000 <a href="http://twitter.com/download/iphone" r... Here's a perturbed super floof. 12/10 would sn... NaN NaN NaN https://twitter.com/dog_rates/status/780543529... 12 10 None doggo
741 780496263422808064 NaN NaN 2016-09-26 19:56:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bell. She likes holding... 7.424232e+17 4.196984e+09 2016-06-13 18:27:32 +0000 https://twitter.com/dog_rates/status/742423170... 12 10 Bell doggo
742 780476555013349377 NaN NaN 2016-09-26 18:38:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @Patreon: Well. @dog_rates is on Patreon. \... 7.804657e+17 1.228326e+09 2016-09-26 17:55:00 +0000 https://www.patreon.com/WeRateDogs,https://twi... 12 10 None doggo
743 780459368902959104 NaN NaN 2016-09-26 17:29:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. Don't worry, he's not a real bea... NaN NaN NaN https://twitter.com/dog_rates/status/780459368... 11 10 Bear doggo
744 780192070812196864 NaN NaN 2016-09-25 23:47:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/780192070... 11 10 None doggo
745 780092040432480260 NaN NaN 2016-09-25 17:10:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Hank. He's mischievous ... 7.533757e+17 4.196984e+09 2016-07-13 23:48:51 +0000 https://twitter.com/dog_rates/status/753375668... 8 10 Hank doggo
746 780074436359819264 NaN NaN 2016-09-25 16:00:13 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a doggo questioning his entire existenc... NaN NaN NaN https://vine.co/v/5nzYBpl0TY2 10 10 None doggo
747 779834332596887552 NaN NaN 2016-09-25 00:06:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He really wants to kiss himself... NaN NaN NaN https://twitter.com/dog_rates/status/779834332... 11 10 Scout doggo
748 779377524342161408 NaN NaN 2016-09-23 17:50:56 +0000 <a href="http://twitter.com/download/iphone" r... Have you ever seen such a smol pupper? Portabl... NaN NaN NaN https://twitter.com/dog_rates/status/779377524... 12 10 None doggo
749 779124354206535695 NaN NaN 2016-09-23 01:04:56 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Hurley. He's the curly one... 6.794628e+17 4.196984e+09 2015-12-23 00:45:35 +0000 https://twitter.com/dog_rates/status/679462823... 11 10 Hurley doggo
750 779123168116150273 NaN NaN 2016-09-23 01:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Reggie. He hugs everyone he meets. 12/... NaN NaN NaN https://twitter.com/dog_rates/status/779123168... 12 10 Reggie doggo
751 779056095788752897 NaN NaN 2016-09-22 20:33:42 +0000 <a href="http://twitter.com/download/iphone" r... Everybody drop what you're doing and look at t... NaN NaN NaN https://twitter.com/dog_rates/status/779056095... 13 10 None doggo
752 778990705243029504 NaN NaN 2016-09-22 16:13:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Jay. He's really h*ckin happy about th... NaN NaN NaN https://twitter.com/dog_rates/status/778990705... 11 10 Jay doggo
753 778774459159379968 NaN NaN 2016-09-22 01:54:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: In case you haven't seen the mo... 7.580996e+17 4.196984e+09 2016-07-27 00:40:12 +0000 https://vine.co/v/hQJbaj1VpIz,https://vine.co/... 13 10 None doggo
754 778764940568104960 NaN NaN 2016-09-22 01:16:45 +0000 <a href="http://twitter.com/download/iphone" r... Oh my god it's Narcos but Barkos. 13/10 someon... NaN NaN NaN https://m.youtube.com/watch?v=idKxCMsS3FQ&feat... 13 10 None doggo
755 778748913645780993 NaN NaN 2016-09-22 00:13:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Mya (pronounced "mmmyah?"). Her head i... NaN NaN NaN https://twitter.com/dog_rates/status/778748913... 11 10 Mya doggo
756 778650543019483137 NaN NaN 2016-09-21 17:42:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Strider. He thinks he's a sorority girl. ... NaN NaN NaN https://twitter.com/dog_rates/status/778650543... 10 10 Strider doggo
757 778624900596654080 NaN NaN 2016-09-21 16:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a sailor pup. 11/10 would... NaN NaN NaN https://twitter.com/dog_rates/status/778624900... 11 10 Penny doggo
758 778408200802557953 NaN NaN 2016-09-21 01:39:11 +0000 <a href="http://twitter.com/download/iphone" r... RIP Loki. Thank you for the good times. You wi... NaN NaN NaN https://twitter.com/dog_rates/status/778408200... 14 10 None doggo
759 778396591732486144 NaN NaN 2016-09-21 00:53:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is an East African Chalupa... 7.030419e+17 4.196984e+09 2016-02-26 02:20:37 +0000 https://twitter.com/dog_rates/status/703041949... 10 10 an doggo
760 778383385161035776 NaN NaN 2016-09-21 00:00:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She's a future Dogue model. Won'... NaN NaN NaN https://twitter.com/dog_rates/status/778383385... 13 10 Nala doggo
761 778286810187399168 NaN NaN 2016-09-20 17:36:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has too much skin. Isn't h... NaN NaN NaN https://twitter.com/dog_rates/status/778286810... 11 10 Stanley doggo
762 778039087836069888 NaN NaN 2016-09-20 01:12:28 +0000 <a href="http://twitter.com/download/iphone" r... Evolution of a pupper yawn featuring Max. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/778039087... 12 10 None doggo
763 778027034220126208 NaN NaN 2016-09-20 00:24:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She's a Jubilant Bush Pupper. ... NaN NaN NaN https://twitter.com/dog_rates/status/778027034... 27 10 Sophie doggo
764 777953400541634568 NaN NaN 2016-09-19 19:31:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Gerald. He's a fairly exot... 7.681934e+17 4.196984e+09 2016-08-23 21:09:14 +0000 https://twitter.com/dog_rates/status/768193404... 8 10 Gerald doggo
765 777885040357281792 NaN NaN 2016-09-19 15:00:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Wesley. He's clearly trespassing. Seem... NaN NaN NaN https://twitter.com/dog_rates/status/777885040... 3 10 Wesley doggo
766 777684233540206592 NaN NaN 2016-09-19 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... "Yep... just as I suspected. You're not flossi... NaN NaN NaN https://twitter.com/dog_rates/status/777684233... 12 10 None doggo
767 777641927919427584 NaN NaN 2016-09-18 22:54:18 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Arnie. He's a Nova Scot... 7.504293e+17 4.196984e+09 2016-07-05 20:41:01 +0000 https://twitter.com/dog_rates/status/750429297... 12 10 Arnie doggo
768 777621514455814149 NaN NaN 2016-09-18 21:33:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. You can't look at him and not s... NaN NaN NaN https://twitter.com/dog_rates/status/777621514... 12 10 Derek doggo
769 777189768882946048 NaN NaN 2016-09-17 16:57:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He's being held so he doesn't... NaN NaN NaN https://twitter.com/dog_rates/status/777189768... 12 10 Jeffrey doggo
770 776819012571455488 NaN NaN 2016-09-16 16:24:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everybody look at this beautifu... 6.798284e+17 4.196984e+09 2015-12-24 00:58:27 +0000 https://twitter.com/dog_rates/status/679828447... 13 10 None doggo
771 776813020089548800 NaN NaN 2016-09-16 16:00:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Solomon. He was arrested for possession o... NaN NaN NaN https://twitter.com/dog_rates/status/776813020... 12 10 Solomon doggo
772 776477788987613185 NaN NaN 2016-09-15 17:48:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Huck. He's addicted to caffeine. Hope ... NaN NaN NaN https://twitter.com/dog_rates/status/776477788... 11 10 Huck doggo
773 776249906839351296 NaN NaN 2016-09-15 02:42:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Pls stop sen... 7.007478e+17 4.196984e+09 2016-02-19 18:24:26 +0000 https://twitter.com/dog_rates/status/700747788... 11 10 very doggo
774 776218204058357768 NaN NaN 2016-09-15 00:36:55 +0000 <a href="http://twitter.com/download/iphone" r... Atlas rolled around in some chalk and now he's... NaN NaN NaN https://twitter.com/dog_rates/status/776218204... 13 10 None doggo
775 776201521193218049 NaN NaN 2016-09-14 23:30:38 +0000 <a href="http://twitter.com/download/iphone" r... This is O'Malley. That is how he sleeps. Doesn... NaN NaN NaN https://twitter.com/dog_rates/status/776201521... 10 10 O doggo
776 776113305656188928 NaN NaN 2016-09-14 17:40:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Sampson. He's about to get hit with a ... NaN NaN NaN https://twitter.com/dog_rates/status/776113305... 11 10 Sampson doggo
777 776088319444877312 NaN NaN 2016-09-14 16:00:49 +0000 <a href="http://twitter.com/download/iphone" r... I can't tap the screen to make the hearts appe... NaN NaN NaN https://twitter.com/dog_rates/status/776088319... 10 10 None doggo
778 775898661951791106 NaN NaN 2016-09-14 03:27:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Like father (doggo), like son (... 7.331095e+17 4.196984e+09 2016-05-19 01:38:16 +0000 https://twitter.com/dog_rates/status/733109485... 12 10 None doggo
779 775842724423557120 NaN NaN 2016-09-13 23:44:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Blue. He was having an average day unt... NaN NaN NaN https://twitter.com/dog_rates/status/775842724... 12 10 Blue doggo
780 775733305207554048 NaN NaN 2016-09-13 16:30:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Anakin. He strives to reach his full d... NaN NaN NaN https://twitter.com/dog_rates/status/775733305... 11 10 Anakin doggo
781 775729183532220416 NaN NaN 2016-09-13 16:13:44 +0000 <a href="http://twitter.com/download/iphone" r... This girl straight up rejected a guy because h... NaN NaN NaN https://twitter.com/dog_rates/status/775729183... 13 10 None doggo
782 775364825476165632 NaN NaN 2016-09-12 16:05:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Finley. He's an independent doggo stil... NaN NaN NaN https://twitter.com/dog_rates/status/775364825... 11 10 Finley doggo
783 775350846108426240 NaN NaN 2016-09-12 15:10:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Maximus. A little rain won't stop him.... NaN NaN NaN https://vine.co/v/ijmv0PD0XXD 12 10 Maximus doggo
784 775096608509886464 NaN NaN 2016-09-11 22:20:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: After so many requests, this is... 7.403732e+17 4.196984e+09 2016-06-08 02:41:38 +0000 https://twitter.com/dog_rates/status/740373189... 9 11 None doggo
785 775085132600442880 NaN NaN 2016-09-11 21:34:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He would like a hug. 13/10 som... NaN NaN NaN https://twitter.com/dog_rates/status/775085132... 13 10 Tucker doggo
786 774757898236878852 NaN NaN 2016-09-10 23:54:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Finley. She's a Beneboop Cumbersplash.... NaN NaN NaN https://twitter.com/dog_rates/status/774757898... 12 10 Finley doggo
787 774639387460112384 NaN NaN 2016-09-10 16:03:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Sprinkles. He's trapped in light jail.... NaN NaN NaN https://twitter.com/dog_rates/status/774639387... 10 10 Sprinkles doggo
788 774314403806253056 NaN NaN 2016-09-09 18:31:54 +0000 <a href="http://twitter.com/download/iphone" r... I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC B... NaN NaN NaN https://twitter.com/dog_rates/status/774314403... 14 10 None doggo
789 773985732834758656 NaN NaN 2016-09-08 20:45:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winnie. She just made awkward eye contact... NaN NaN NaN https://twitter.com/dog_rates/status/773985732... 11 10 Winnie doggo
790 773922284943896577 NaN NaN 2016-09-08 16:33:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Heinrich (pronounced "Pat"). He's a Bo... NaN NaN NaN https://twitter.com/dog_rates/status/773922284... 12 10 Heinrich doggo
791 773704687002451968 NaN NaN 2016-09-08 02:09:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He knows he's adorable. One ear ... NaN NaN NaN https://twitter.com/dog_rates/status/773704687... 12 10 Loki doggo
792 773670353721753600 NaN NaN 2016-09-07 23:52:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Shakespeare. He appears to be maximum ... NaN NaN NaN https://twitter.com/dog_rates/status/773670353... 10 10 Shakespeare doggo
793 773547596996571136 NaN NaN 2016-09-07 15:44:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Chelsea. She forgot how to dog. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/773547596... 11 10 Chelsea doggo
794 773336787167145985 NaN NaN 2016-09-07 01:47:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Fizz. She thinks love is a... 7.713808e+17 4.196984e+09 2016-09-01 16:14:48 +0000 https://twitter.com/dog_rates/status/771380798... 11 10 Fizz doggo
795 773308824254029826 NaN NaN 2016-09-06 23:56:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Bungalo. She uses that face to get wha... NaN NaN NaN https://twitter.com/dog_rates/status/773308824... 12 10 Bungalo doggo
796 773247561583001600 NaN NaN 2016-09-06 19:52:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. He's a pupholder. Comes with the... NaN NaN NaN https://twitter.com/dog_rates/status/773247561... 10 10 Chip doggo
797 773191612633579521 NaN NaN 2016-09-06 16:10:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Grey. He's the dogtor in charge of you... NaN NaN NaN https://twitter.com/dog_rates/status/773191612... 12 10 Grey doggo
798 772877495989305348 NaN NaN 2016-09-05 19:22:09 +0000 <a href="http://twitter.com" rel="nofollow">Tw... You need to watch these two doggos argue throu... NaN NaN NaN https://twitter.com/dog_rates/status/772877495... 11 10 None doggo
799 772826264096874500 NaN NaN 2016-09-05 15:58:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Roosevelt. He's preparing for takeoff. Ma... NaN NaN NaN https://twitter.com/dog_rates/status/772826264... 11 10 Roosevelt doggo
800 772615324260794368 NaN NaN 2016-09-05 02:00:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gromit. He's pupset bec... 7.652221e+17 4.196984e+09 2016-08-15 16:22:20 +0000 https://twitter.com/dog_rates/status/765222098... 10 10 Gromit doggo
801 772581559778025472 NaN NaN 2016-09-04 23:46:12 +0000 <a href="http://twitter.com/download/iphone" r... Guys this is getting so out of hand. We only r... NaN NaN NaN https://twitter.com/dog_rates/status/772581559... 10 10 a doggo
802 772193107915964416 NaN NaN 2016-09-03 22:02:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Willem. He's a Penn State pupper. Thin... NaN NaN NaN https://twitter.com/dog_rates/status/772193107... 12 10 Willem doggo
803 772152991789019136 NaN NaN 2016-09-03 19:23:13 +0000 <a href="http://twitter.com/download/iphone" r... Here's a couple rufferees making sure all the ... NaN NaN NaN https://twitter.com/dog_rates/status/772152991... 10 10 None doggo
804 772117678702071809 NaN NaN 2016-09-03 17:02:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jack. He's a Clemson pup. Appears to be r... NaN NaN NaN https://twitter.com/dog_rates/status/772117678... 12 10 Jack doggo
805 772114945936949249 NaN NaN 2016-09-03 16:52:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's very nervous for the game. ... NaN NaN NaN https://twitter.com/dog_rates/status/772114945... 10 10 Finn doggo
806 772102971039580160 NaN NaN 2016-09-03 16:04:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's an OU cheerleader. About ... NaN NaN NaN https://twitter.com/dog_rates/status/772102971... 11 10 Penny doggo
807 771908950375665664 NaN NaN 2016-09-03 03:13:29 +0000 <a href="http://twitter.com/download/iphone" r... Doggo will persevere. 13/10\nhttps://t.co/yOVz... NaN NaN NaN https://twitter.com/yahoonews/status/771905568... 13 10 None doggo
808 771770456517009408 NaN NaN 2016-09-02 18:03:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Davey. He'll have your daughter home b... NaN NaN NaN https://twitter.com/dog_rates/status/771770456... 11 10 Davey doggo
809 771500966810099713 NaN NaN 2016-09-02 00:12:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Dakota. He's just saying hi. That's al... NaN NaN NaN https://twitter.com/dog_rates/status/771500966... 12 10 Dakota doggo
810 771380798096281600 NaN NaN 2016-09-01 16:14:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fizz. She thinks love is a social constru... NaN NaN NaN https://twitter.com/dog_rates/status/771380798... 11 10 Fizz doggo
811 771171053431250945 NaN NaN 2016-09-01 02:21:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Frankie. He's wearing b... 6.733201e+17 4.196984e+09 2015-12-06 01:56:44 +0000 https://twitter.com/dog_rates/status/673320132... 11 10 Frankie doggo
812 771136648247640064 NaN NaN 2016-09-01 00:04:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Dixie. She wants to be a ship captain.... NaN NaN NaN https://twitter.com/dog_rates/status/771136648... 11 10 Dixie doggo
813 771102124360998913 NaN NaN 2016-08-31 21:47:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He works for @TODAYshow. Supe... NaN NaN NaN https://twitter.com/dog_rates/status/771102124... 12 10 Charlie doggo
814 771014301343748096 NaN NaN 2016-08-31 15:58:28 +0000 <a href="http://twitter.com/download/iphone" r... Another pic without a dog in it? What am I sup... NaN NaN NaN https://twitter.com/dog_rates/status/771014301... 7 10 None doggo
815 771004394259247104 NaN NaN 2016-08-31 15:19:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @katieornah: @dog_rates learning a lot at c... 7.710021e+17 1.732729e+09 2016-08-31 15:10:07 +0000 https://twitter.com/katieornah/status/77100213... 12 10 None doggo
816 770787852854652928 NaN NaN 2016-08-31 00:58:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. His tongue has gone rogue. Do... NaN NaN NaN https://twitter.com/dog_rates/status/770787852... 10 10 Winston doggo
817 770772759874076672 NaN NaN 2016-08-30 23:58:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He's super h*ckin fluffy. T... NaN NaN NaN https://twitter.com/dog_rates/status/770772759... 11 10 Sebastian doggo
818 770743923962707968 NaN NaN 2016-08-30 22:04:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a doggo blowing bubbles.... 7.392382e+17 4.196984e+09 2016-06-04 23:31:25 +0000 https://twitter.com/dog_rates/status/739238157... 13 10 None doggo
819 770655142660169732 NaN NaN 2016-08-30 16:11:18 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/770655142... 11 10 very doggo
820 770414278348247044 NaN NaN 2016-08-30 00:14:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Al Cabone. He's a gangsta puppa. Rather h... NaN NaN NaN https://twitter.com/dog_rates/status/770414278... 11 10 Al doggo
821 770293558247038976 NaN NaN 2016-08-29 16:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackson. There's nothing abnormal abou... NaN NaN NaN https://twitter.com/dog_rates/status/770293558... 10 10 Jackson doggo
822 770093767776997377 NaN NaN 2016-08-29 03:00:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is just downright precious... 7.410673e+17 4.196984e+09 2016-06-10 00:39:48 +0000 https://twitter.com/dog_rates/status/741067306... 12 10 just doggo
823 770069151037685760 NaN NaN 2016-08-29 01:22:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Carbon. This is his first time sw... NaN NaN NaN https://twitter.com/dog_rates/status/770069151... 10 10 Carbon doggo
824 769940425801170949 NaN NaN 2016-08-28 16:51:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Klein. These pics were taken a month a... NaN NaN NaN https://twitter.com/dog_rates/status/769940425... 12 10 Klein doggo
825 769695466921623552 NaN NaN 2016-08-28 00:37:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Titan. He's trying to make friends. Of... NaN NaN NaN https://twitter.com/dog_rates/status/769695466... 13 10 Titan doggo
826 769335591808995329 NaN NaN 2016-08-27 00:47:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Ever seen a dog pet another dog... 7.069045e+17 4.196984e+09 2016-03-07 18:09:06 +0000 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/... 13 10 None doggo
827 769212283578875904 NaN NaN 2016-08-26 16:37:54 +0000 <a href="http://twitter.com/download/iphone" r... This is DonDon. He's way up but doesn't feel b... NaN NaN NaN https://twitter.com/dog_rates/status/769212283... 12 10 DonDon doggo
828 768970937022709760 NaN NaN 2016-08-26 00:38:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kirby. His bowl weighs more than him. ... NaN NaN NaN https://twitter.com/dog_rates/status/768970937... 12 10 Kirby doggo
829 768909767477751808 NaN NaN 2016-08-25 20:35:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: When it's Janet from accounting... 7.001438e+17 4.196984e+09 2016-02-18 02:24:13 +0000 https://twitter.com/dog_rates/status/700143752... 10 10 None doggo
830 768855141948723200 NaN NaN 2016-08-25 16:58:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Jesse. He really wants a belly rub. Wi... NaN NaN NaN https://twitter.com/dog_rates/status/768855141... 11 10 Jesse doggo
831 768609597686943744 NaN NaN 2016-08-25 00:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. His sweater is too small and he a... NaN NaN NaN https://twitter.com/dog_rates/status/768609597... 10 10 Lou doggo
832 768596291618299904 NaN NaN 2016-08-24 23:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oakley and Charlie. They're convi... NaN NaN NaN https://twitter.com/dog_rates/status/768596291... 12 10 Oakley doggo
833 768554158521745409 NaN NaN 2016-08-24 21:02:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Nollie. She's waving at... 7.399792e+17 4.196984e+09 2016-06-07 00:36:02 +0000 https://twitter.com/dog_rates/status/739979191... 12 10 Nollie doggo
834 768473857036525572 NaN NaN 2016-08-24 15:43:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chevy. He had a late breakfast and now ha... NaN NaN NaN https://twitter.com/dog_rates/status/768473857... 11 10 Chevy doggo
835 768193404517830656 NaN NaN 2016-08-23 21:09:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gerald. He's a fairly exotic doggo. Floof... NaN NaN NaN https://twitter.com/dog_rates/status/768193404... 8 10 Gerald doggo
836 767884188863397888 NaN NaN 2016-08-23 00:40:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Tito. He's on the lookout. Nobody know... NaN NaN NaN https://twitter.com/dog_rates/status/767884188... 10 10 Tito doggo
837 767754930266464257 NaN NaN 2016-08-22 16:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Philbert. His toilet broke and he does... NaN NaN NaN https://twitter.com/dog_rates/status/767754930... 11 10 Philbert doggo
838 767500508068192258 NaN NaN 2016-08-21 23:15:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Louie. He's making quite a h*ckin mess... NaN NaN NaN https://twitter.com/dog_rates/status/767500508... 12 10 Louie doggo
839 767191397493538821 NaN NaN 2016-08-21 02:47:37 +0000 <a href="http://twitter.com/download/iphone" r... I don't know any of the backstory behind this ... NaN NaN NaN https://twitter.com/dog_rates/status/767191397... 13 10 None doggo
840 767122157629476866 NaN NaN 2016-08-20 22:12:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Rupert. You betrayed him with bath tim... NaN NaN NaN https://twitter.com/dog_rates/status/767122157... 13 10 Rupert doggo
841 766864461642756096 NaN NaN 2016-08-20 05:08:29 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs... this is a ... 7.599238e+17 4.196984e+09 2016-08-01 01:28:46 +0000 https://twitter.com/dog_rates/status/759923798... 10 10 None doggo
842 766793450729734144 NaN NaN 2016-08-20 00:26:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Rufus. He just missed out on the 100m ... NaN NaN NaN https://twitter.com/dog_rates/status/766793450... 10 10 Rufus doggo
843 766714921925144576 7.667118e+17 4.196984e+09 2016-08-19 19:14:16 +0000 <a href="http://twitter.com/download/iphone" r... His name is Charley and he already has a new s... NaN NaN NaN NaN 13 10 None doggo
844 766693177336135680 NaN NaN 2016-08-19 17:47:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Brudge. He's a Doberdog. Going to be h... NaN NaN NaN https://twitter.com/dog_rates/status/766693177... 11 10 Brudge doggo
845 766423258543644672 NaN NaN 2016-08-18 23:55:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shadoe. Her tongue flies out of her mo... NaN NaN NaN https://twitter.com/dog_rates/status/766423258... 9 10 Shadoe doggo
846 766313316352462849 NaN NaN 2016-08-18 16:38:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He has legendary eyebrows and h... NaN NaN NaN https://twitter.com/dog_rates/status/766313316... 12 10 Oscar doggo
847 766078092750233600 NaN NaN 2016-08-18 01:03:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Colby. He's currently r... 7.258423e+17 4.196984e+09 2016-04-29 00:21:01 +0000 https://twitter.com/dog_rates/status/725842289... 12 10 Colby doggo
848 766069199026450432 NaN NaN 2016-08-18 00:28:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Juno. She can see your future. 12/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/766069199... 12 10 Juno doggo
849 766008592277377025 NaN NaN 2016-08-17 20:27:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Angel. She stole the @ShopWeRateDogs s... NaN NaN NaN https://twitter.com/dog_rates/status/766008592... 11 10 Angel doggo
850 765719909049503744 NaN NaN 2016-08-17 01:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Brat. He has a hard time being ferocio... NaN NaN NaN https://twitter.com/dog_rates/status/765719909... 12 10 Brat doggo
851 765669560888528897 NaN NaN 2016-08-16 22:00:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tove. She's a Balsamic Poinsetter. Sur... NaN NaN NaN https://twitter.com/dog_rates/status/765669560... 12 10 Tove doggo
852 765395769549590528 NaN NaN 2016-08-16 03:52:26 +0000 <a href="http://twitter.com/download/iphone" r... This is my dog. Her name is Zoey. She knows I'... NaN NaN NaN https://twitter.com/dog_rates/status/765395769... 13 10 my doggo
853 765371061932261376 NaN NaN 2016-08-16 02:14:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Louie. He's had a long day. Did a lot ... NaN NaN NaN https://twitter.com/dog_rates/status/765371061... 11 10 Louie doggo
854 765222098633691136 NaN NaN 2016-08-15 16:22:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Gromit. He's pupset because there's no... NaN NaN NaN https://twitter.com/dog_rates/status/765222098... 10 10 Gromit doggo
855 764857477905154048 NaN NaN 2016-08-14 16:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Aubie. He has paws for days. Nibbling ... NaN NaN NaN https://twitter.com/dog_rates/status/764857477... 12 10 Aubie doggo
856 764259802650378240 NaN NaN 2016-08-13 00:38:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Kota and her son Benedict. She doesn't... NaN NaN NaN https://twitter.com/dog_rates/status/764259802... 10 10 Kota doggo
857 763956972077010945 7.638652e+17 1.584641e+07 2016-08-12 04:35:10 +0000 <a href="http://twitter.com/download/iphone" r... @TheEllenShow I'm not sure if you know this bu... NaN NaN NaN NaN 12 10 None doggo
858 763837565564780549 NaN NaN 2016-08-11 20:40:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's touching a butt. Couldn't ... NaN NaN NaN https://twitter.com/dog_rates/status/763837565... 11 10 Alfie doggo
859 763183847194451968 NaN NaN 2016-08-10 01:23:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He collects teddy bears. It's a... NaN NaN NaN https://twitter.com/dog_rates/status/763183847... 8 10 Clark doggo
860 763167063695355904 NaN NaN 2016-08-10 00:16:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Eve. She's a raging alcoho... 6.732953e+17 4.196984e+09 2015-12-06 00:17:55 +0000 https://twitter.com/dog_rates/status/673295268... 8 10 Eve doggo
861 763103485927849985 NaN NaN 2016-08-09 20:03:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's a Butterflop Hufflepoof. ... NaN NaN NaN https://twitter.com/dog_rates/status/763103485... 10 10 Belle doggo
862 762699858130116608 NaN NaN 2016-08-08 17:19:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Leela. She's a Fetty Woof. Lost eye wh... NaN NaN NaN https://twitter.com/dog_rates/status/762699858... 11 10 Leela doggo
863 762471784394268675 NaN NaN 2016-08-08 02:13:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Glenn. Being in public scares him. Fright... NaN NaN NaN https://twitter.com/dog_rates/status/762471784... 12 10 Glenn doggo
864 762464539388485633 NaN NaN 2016-08-08 01:44:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. His father was a bear and his m... NaN NaN NaN https://twitter.com/dog_rates/status/762464539... 12 10 Buddy doggo
865 762316489655476224 NaN NaN 2016-08-07 15:56:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He specializes in mid-air freez... NaN NaN NaN https://twitter.com/dog_rates/status/762316489... 11 10 Scout doggo
866 762035686371364864 NaN NaN 2016-08-06 21:20:40 +0000 <a href="http://twitter.com/download/iphone" r... This left me speechless. 14/10 heckin heroic a... NaN NaN NaN https://twitter.com/dog_rates/status/762035686... 14 10 None doggo
867 761976711479193600 NaN NaN 2016-08-06 17:26:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Shelby. She finds stuff to put on her ... NaN NaN NaN https://twitter.com/dog_rates/status/761976711... 12 10 Shelby doggo
868 761750502866649088 NaN NaN 2016-08-06 02:27:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Tristan do not speak to me wit... 6.853251e+17 4.196984e+09 2016-01-08 05:00:14 +0000 https://twitter.com/dog_rates/status/685325112... 10 10 None doggo
869 761745352076779520 NaN NaN 2016-08-06 02:06:59 +0000 <a href="http://twitter.com/download/iphone" r... Guys.. we only rate dogs. Pls don't send any m... NaN NaN NaN https://twitter.com/dog_rates/status/761745352... 11 10 None doggo
870 761672994376806400 NaN NaN 2016-08-05 21:19:27 +0000 <a href="http://twitter.com/download/iphone" r... Ohboyohboyohboyohboyohboyohboyohboyohboyohboyo... NaN NaN NaN https://twitter.com/dog_rates/status/761672994... 10 10 None doggo
871 761599872357261312 NaN NaN 2016-08-05 16:28:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Sephie. According to this picture, she... NaN NaN NaN https://twitter.com/dog_rates/status/761599872... 11 10 Sephie doggo
872 761371037149827077 NaN NaN 2016-08-05 01:19:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Oh. My. God. 13/10 magical af h... 7.116948e+17 4.196984e+09 2016-03-20 23:23:54 +0000 https://twitter.com/dog_rates/status/711694788... 13 10 None doggo
873 761334018830917632 NaN NaN 2016-08-04 22:52:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. I really want to hear the joke ... NaN NaN NaN https://twitter.com/dog_rates/status/761334018... 10 10 Bruce doggo
874 761292947749015552 NaN NaN 2016-08-04 20:09:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bonaparte. He's pupset because it's cloud... NaN NaN NaN https://twitter.com/dog_rates/status/761292947... 11 10 Bonaparte doggo
875 761227390836215808 NaN NaN 2016-08-04 15:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Albert. He just found out that bees ar... NaN NaN NaN https://twitter.com/dog_rates/status/761227390... 10 10 Albert doggo
876 761004547850530816 NaN NaN 2016-08-04 01:03:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo and Ty. Bo eats paper and Ty felt l... NaN NaN NaN https://twitter.com/dog_rates/status/761004547... 11 10 Bo doggo
877 760893934457552897 NaN NaN 2016-08-03 17:43:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Wishes. He has the day off. Daily stru... NaN NaN NaN https://twitter.com/dog_rates/status/760893934... 11 10 Wishes doggo
878 760656994973933572 NaN NaN 2016-08-03 02:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Rose. Her face is stuck like that. 11/... NaN NaN NaN https://twitter.com/dog_rates/status/760656994... 11 10 Rose doggo
879 760641137271070720 NaN NaN 2016-08-03 00:59:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Theo. He can walk on water. Still comi... NaN NaN NaN https://twitter.com/dog_rates/status/760641137... 12 10 Theo doggo
880 760539183865880579 NaN NaN 2016-08-02 18:14:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Atlas. Swinging is his passion. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/760539183... 12 10 Atlas doggo
881 760521673607086080 NaN NaN 2016-08-02 17:04:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Doggo want what doggo cannot have. Temptation ... NaN NaN NaN https://vine.co/v/5ApKetxzmTB 12 10 None doggo
882 760290219849637889 NaN NaN 2016-08-02 01:44:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Rocco. He's doing his best. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/760290219... 13 10 Rocco doggo
883 760252756032651264 NaN NaN 2016-08-01 23:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Fido. He can tell the weather. Not goo... NaN NaN NaN https://twitter.com/dog_rates/status/760252756... 4 10 Fido doggo
884 760190180481531904 NaN NaN 2016-08-01 19:07:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sadie. She's addicted to balloons. It's t... NaN NaN NaN https://twitter.com/dog_rates/status/760190180... 10 10 Sadie doggo
885 760153949710192640 NaN NaN 2016-08-01 16:43:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @hownottodraw: The story/person behind @dog... 7.601538e+17 1.950368e+08 2016-08-01 16:42:51 +0000 https://weratedogs.com/pages/about-us,https://... 11 10 None doggo
886 759943073749200896 NaN NaN 2016-08-01 02:45:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a wicked fast pupper. 12/10 camera coul... NaN NaN NaN https://vine.co/v/5AJm5pq7Kav 12 10 None doggo
887 759923798737051648 NaN NaN 2016-08-01 01:28:46 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs... this is a Taiwanese Guide... NaN NaN NaN https://twitter.com/dog_rates/status/759923798... 10 10 None doggo
888 759846353224826880 NaN NaN 2016-07-31 20:21:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirby. He's a Beneblip Cumberpat. Pret... NaN NaN NaN https://twitter.com/dog_rates/status/759846353... 11 10 Kirby doggo
889 759793422261743616 NaN NaN 2016-07-31 16:50:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie &amp; Lila. Maggie is the doggo, L... NaN NaN NaN https://twitter.com/dog_rates/status/759793422... 12 10 Maggie doggo
890 759566828574212096 NaN NaN 2016-07-31 01:50:18 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This... is a Tyrannosaurus rex.... 7.395441e+17 4.196984e+09 2016-06-05 19:47:03 +0000 https://twitter.com/dog_rates/status/739544079... 10 10 None doggo
891 759557299618865152 NaN NaN 2016-07-31 01:12:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Emma. She can't believe her last guess... NaN NaN NaN https://twitter.com/dog_rates/status/759557299... 10 10 Emma doggo
892 759447681597108224 NaN NaN 2016-07-30 17:56:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He has no idea what happened h... NaN NaN NaN https://twitter.com/dog_rates/status/759447681... 11 10 Oakley doggo
893 759446261539934208 NaN NaN 2016-07-30 17:51:13 +0000 <a href="http://twitter.com/download/iphone" r... No no no this is all wrong. The Walmart had to... NaN NaN NaN https://twitter.com/wsaznews/status/7591675587... 10 10 None doggo
894 759197388317847553 NaN NaN 2016-07-30 01:22:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. She's just heckin precious af I ... NaN NaN NaN https://twitter.com/dog_rates/status/759197388... 12 10 Luna doggo
895 759159934323924993 NaN NaN 2016-07-29 22:53:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 ht... 6.703191e+17 4.196984e+09 2015-11-27 19:11:49 +0000 https://twitter.com/dog_rates/status/670319130... 11 10 None doggo
896 759099523532779520 NaN NaN 2016-07-29 18:53:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Toby. He has a drinking problem. Inflatab... NaN NaN NaN https://twitter.com/dog_rates/status/759099523... 7 10 Toby doggo
897 759047813560868866 NaN NaN 2016-07-29 15:27:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Spencer. He's part of the Queen's Guar... NaN NaN NaN https://twitter.com/dog_rates/status/759047813... 11 10 Spencer doggo
898 758854675097526272 NaN NaN 2016-07-29 02:40:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilli Bee &amp; Honey Bear. Unfortunat... NaN NaN NaN https://twitter.com/dog_rates/status/758854675... 11 10 Lilli doggo
899 758828659922702336 NaN NaN 2016-07-29 00:57:05 +0000 <a href="http://twitter.com/download/iphone" r... This doggo is just waiting for someone to be p... NaN NaN NaN https://twitter.com/dog_rates/status/758828659... 13 10 None doggo
900 758740312047005698 NaN NaN 2016-07-28 19:06:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boston. He's worried because his tongue w... NaN NaN NaN https://twitter.com/dog_rates/status/758740312... 12 10 Boston doggo
901 758474966123810816 NaN NaN 2016-07-28 01:31:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Brandonald. He accidentally opened the... NaN NaN NaN https://twitter.com/dog_rates/status/758474966... 11 10 Brandonald doggo
902 758467244762497024 NaN NaN 2016-07-28 01:00:57 +0000 <a href="http://twitter.com/download/iphone" r... Why does this never happen at my front door...... NaN NaN NaN https://twitter.com/dog_rates/status/758467244... 165 150 None doggo
903 758405701903519748 NaN NaN 2016-07-27 20:56:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He falls asleep wherever he want... NaN NaN NaN https://twitter.com/dog_rates/status/758405701... 10 10 Odie doggo
904 758355060040593408 NaN NaN 2016-07-27 17:35:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Corey. He's a Portobello Corgicool. Tr... NaN NaN NaN https://twitter.com/dog_rates/status/758355060... 11 10 Corey doggo
905 758099635764359168 NaN NaN 2016-07-27 00:40:12 +0000 <a href="http://vine.co" rel="nofollow">Vine -... In case you haven't seen the most dramatic sne... NaN NaN NaN https://vine.co/v/hQJbaj1VpIz 13 10 None doggo
906 758041019896193024 NaN NaN 2016-07-26 20:47:17 +0000 <a href="http://twitter.com/download/iphone" r... Teagan reads entire books in store so they're ... NaN NaN NaN https://twitter.com/dog_rates/status/758041019... 9 10 None doggo
907 757741869644341248 NaN NaN 2016-07-26 00:58:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Leonard. He hides in bushes to escape ... NaN NaN NaN https://twitter.com/dog_rates/status/757741869... 10 10 Leonard doggo
908 757729163776290825 NaN NaN 2016-07-26 00:08:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Chompsky. He lives up t... 6.790626e+17 4.196984e+09 2015-12-21 22:15:18 +0000 https://twitter.com/dog_rates/status/679062614... 11 10 Chompsky doggo
909 757725642876129280 NaN NaN 2016-07-25 23:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Beckham. He fell asleep at the wheel. ... NaN NaN NaN https://twitter.com/dog_rates/status/757725642... 11 10 Beckham doggo
910 757611664640446465 NaN NaN 2016-07-25 16:21:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He tries to come across as fei... NaN NaN NaN https://twitter.com/dog_rates/status/757611664... 12 10 Cooper doggo
911 757597904299253760 NaN NaN 2016-07-25 15:26:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @jon_hill987: @dog_rates There is a cunning... 7.575971e+17 2.804798e+08 2016-07-25 15:23:28 +0000 https://twitter.com/jon_hill987/status/7575971... 11 10 None doggo
912 757596066325864448 NaN NaN 2016-07-25 15:19:12 +0000 <a href="http://twitter.com/download/iphone" r... Here's another picture without a dog in it. Id... NaN NaN NaN https://twitter.com/dog_rates/status/757596066... 4 10 None doggo
913 757400162377592832 NaN NaN 2016-07-25 02:20:45 +0000 <a href="http://twitter.com/download/iphone" r... She walks herself up and down the train to be ... NaN NaN NaN https://twitter.com/dog_rates/status/757400162... 13 10 None doggo
914 757393109802180609 NaN NaN 2016-07-25 01:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo completely oblivious to the dou... NaN NaN NaN https://twitter.com/dog_rates/status/757393109... 10 10 None doggo
915 757354760399941633 NaN NaN 2016-07-24 23:20:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Devón (pronounced "Eric"). He forgot h... NaN NaN NaN https://twitter.com/dog_rates/status/757354760... 8 10 Devón doggo
916 756998049151549440 NaN NaN 2016-07-23 23:42:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He's an English Creamschnitzel... NaN NaN NaN https://twitter.com/dog_rates/status/756998049... 11 10 Oliver doggo
917 756939218950160384 NaN NaN 2016-07-23 19:49:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Jax. He is a majestic mountain pupper.... NaN NaN NaN https://twitter.com/dog_rates/status/756939218... 12 10 Jax doggo
918 756651752796094464 NaN NaN 2016-07-23 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Gert. He just wants you to be happy. 1... NaN NaN NaN https://twitter.com/dog_rates/status/756651752... 11 10 Gert doggo
919 756526248105566208 NaN NaN 2016-07-22 16:28:07 +0000 <a href="http://twitter.com/download/iphone" r... All hail sky doggo. 13/10 would jump super hig... NaN NaN NaN https://twitter.com/dog_rates/status/756526248... 13 10 None doggo
920 756303284449767430 NaN NaN 2016-07-22 01:42:09 +0000 <a href="http://twitter.com/download/iphone" r... Pwease accept dis rose on behalf of dog. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/756303284... 11 10 None doggo
921 756288534030475264 NaN NaN 2016-07-22 00:43:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a heartwarming scene of a single father... NaN NaN NaN https://twitter.com/dog_rates/status/756288534... 12 10 None doggo
922 756275833623502848 NaN NaN 2016-07-21 23:53:04 +0000 <a href="http://twitter.com/download/iphone" r... When ur older siblings get to play in the deep... NaN NaN NaN https://twitter.com/dog_rates/status/756275833... 10 10 None doggo
923 755955933503782912 NaN NaN 2016-07-21 02:41:54 +0000 <a href="http://twitter.com/download/iphone" r... Here's a frustrated pupper attempting to escap... NaN NaN NaN https://twitter.com/dog_rates/status/755955933... 12 10 None doggo
924 755206590534418437 NaN NaN 2016-07-19 01:04:16 +0000 <a href="http://twitter.com/download/iphone" r... This is one of the most inspirational stories ... NaN NaN NaN https://twitter.com/dog_rates/status/755206590... 14 10 one doggo
925 755110668769038337 NaN NaN 2016-07-18 18:43:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Watson. He trust falls on command. 13/... NaN NaN NaN https://twitter.com/dog_rates/status/755110668... 13 10 Watson doggo
926 754874841593970688 NaN NaN 2016-07-18 03:06:01 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rubio. He has too much ... 6.791584e+17 4.196984e+09 2015-12-22 04:35:49 +0000 https://twitter.com/dog_rates/status/679158373... 11 10 Rubio doggo
927 754856583969079297 NaN NaN 2016-07-18 01:53:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She's not a fan of the fast mo... NaN NaN NaN https://twitter.com/dog_rates/status/754856583... 11 10 Winnie doggo
928 754747087846248448 NaN NaN 2016-07-17 18:38:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's pursuing a more 2D lifesty... NaN NaN NaN https://twitter.com/dog_rates/status/754747087... 12 10 Keith doggo
929 754482103782404096 NaN NaN 2016-07-17 01:05:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. He's currently plotting his reve... NaN NaN NaN https://twitter.com/dog_rates/status/754482103... 10 10 Milo doggo
930 754449512966619136 NaN NaN 2016-07-16 22:55:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Dex. He can see into your past and fut... NaN NaN NaN https://twitter.com/dog_rates/status/754449512... 11 10 Dex doggo
931 754120377874386944 NaN NaN 2016-07-16 01:08:03 +0000 <a href="http://twitter.com/download/iphone" r... When you hear your owner say they need to hatc... NaN NaN NaN https://twitter.com/dog_rates/status/754120377... 10 10 None doggo
932 754011816964026368 NaN NaN 2016-07-15 17:56:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He pouts until he gets to go ... NaN NaN NaN https://twitter.com/dog_rates/status/754011816... 12 10 Charlie doggo
933 753655901052166144 NaN NaN 2016-07-14 18:22:23 +0000 <a href="http://twitter.com/download/iphone" r... "The dogtor is in hahahaha no but seriously I'... NaN NaN NaN https://twitter.com/dog_rates/status/753655901... 10 10 None doggo
934 753420520834629632 NaN NaN 2016-07-14 02:47:04 +0000 <a href="http://twitter.com/download/iphone" r... Here we are witnessing an isolated squad of bo... NaN NaN NaN https://twitter.com/dog_rates/status/753420520... 11 10 None doggo
935 753398408988139520 NaN NaN 2016-07-14 01:19:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. Her batteries are low. 12/10 pr... NaN NaN NaN https://twitter.com/dog_rates/status/753398408... 12 10 Scout doggo
936 753375668877008896 NaN NaN 2016-07-13 23:48:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's mischievous af. Doesn't eve... NaN NaN NaN https://twitter.com/dog_rates/status/753375668... 8 10 Hank doggo
937 753298634498793472 NaN NaN 2016-07-13 18:42:44 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Carly. She's actually 2... 6.815232e+17 4.196984e+09 2015-12-28 17:12:42 +0000 https://twitter.com/dog_rates/status/681523177... 12 10 Carly doggo
938 753294487569522689 NaN NaN 2016-07-13 18:26:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Ace. He's a window washer. One of the ... NaN NaN NaN https://twitter.com/dog_rates/status/753294487... 11 10 Ace doggo
939 753039830821511168 NaN NaN 2016-07-13 01:34:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... So this just changed my life. 13/10 please enj... NaN NaN NaN https://vine.co/v/5W2Dg3XPX7a 13 10 None doggo
940 753026973505581056 NaN NaN 2016-07-13 00:43:15 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Tayzie. She's a Barbadian Bugaboo... NaN NaN NaN https://twitter.com/dog_rates/status/753026973... 10 10 Tayzie doggo
941 752932432744185856 NaN NaN 2016-07-12 18:27:35 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Carl. He's very powerful. 12/10 don't ... NaN NaN NaN https://vine.co/v/OEppMFbejFz 12 10 Carl doggo
942 752917284578922496 NaN NaN 2016-07-12 17:27:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Grizzie. She's a semi-submerged Bahrai... NaN NaN NaN https://twitter.com/dog_rates/status/752917284... 11 10 Grizzie doggo
943 752701944171524096 NaN NaN 2016-07-12 03:11:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: HEY PUP WHAT'S THE PART OF THE ... 6.835159e+17 4.196984e+09 2016-01-03 05:11:12 +0000 https://vine.co/v/ibvnzrauFuV,https://vine.co/... 11 10 None doggo
944 752682090207055872 NaN NaN 2016-07-12 01:52:49 +0000 <a href="http://twitter.com/download/iphone" r... Nothing better than a doggo and a sunset. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/752682090... 10 10 None doggo
945 752660715232722944 NaN NaN 2016-07-12 00:27:52 +0000 <a href="http://twitter.com/download/iphone" r... Hooman used Pokeball\n*wiggle*\n*wiggle*\nDogg... NaN NaN NaN https://twitter.com/dog_rates/status/752660715... 10 10 None doggo
946 752568224206688256 NaN NaN 2016-07-11 18:20:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here are three doggos completely misjudging an... NaN NaN NaN https://vine.co/v/5W0bdhEUUVT 9 10 None doggo
947 752519690950500352 NaN NaN 2016-07-11 15:07:30 +0000 <a href="http://twitter.com/download/iphone" r... Hopefully this puppo on a swing will help get ... NaN NaN NaN https://twitter.com/dog_rates/status/752519690... 11 10 None doggo
948 752334515931054080 NaN NaN 2016-07-11 02:51:40 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo trying to catch some fish. 8/10... NaN NaN NaN https://twitter.com/dog_rates/status/752334515... 8 10 None doggo
949 752309394570878976 NaN NaN 2016-07-11 01:11:51 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everyone needs to watch this. 1... 6.753544e+17 4.196984e+09 2015-12-11 16:40:19 +0000 https://twitter.com/dog_rates/status/675354435... 13 10 None doggo
950 752173152931807232 NaN NaN 2016-07-10 16:10:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. He's a lifeguard. Always prepar... NaN NaN NaN https://twitter.com/dog_rates/status/752173152... 12 10 Brody doggo
951 751950017322246144 NaN NaN 2016-07-10 01:23:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Lola. She's a surfing pupper. 13/10 ma... NaN NaN NaN https://vine.co/v/5WrjaYAMvMO 13 10 Lola doggo
952 751937170840121344 NaN NaN 2016-07-10 00:32:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. Her ice cube is melting. She doe... NaN NaN NaN https://twitter.com/dog_rates/status/751937170... 11 10 Ruby doggo
953 751830394383790080 NaN NaN 2016-07-09 17:28:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's very camera shy. 12/10 wo... NaN NaN NaN https://twitter.com/dog_rates/status/751830394... 12 10 Tucker doggo
954 751793661361422336 NaN NaN 2016-07-09 15:02:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Fred. He's having one heck of a summer... NaN NaN NaN https://vine.co/v/5W5YHdTJvaV 11 10 Fred doggo
955 751598357617971201 NaN NaN 2016-07-09 02:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. A cat got his tongue. 13/10 ador... NaN NaN NaN https://twitter.com/dog_rates/status/751598357... 13 10 Toby doggo
956 751583847268179968 NaN NaN 2016-07-09 01:08:47 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending it pictures that don't eve... NaN NaN NaN https://twitter.com/dog_rates/status/751583847... 5 10 None doggo
957 751538714308972544 NaN NaN 2016-07-08 22:09:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Max. She has one ear that's always sli... NaN NaN NaN https://twitter.com/dog_rates/status/751538714... 10 10 Max doggo
958 751456908746354688 NaN NaN 2016-07-08 16:44:23 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper that's very hungry but too laz... NaN NaN NaN https://twitter.com/dog_rates/status/751456908... 12 10 None doggo
959 751251247299190784 NaN NaN 2016-07-08 03:07:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Gilbert. He's being chased by a battal... NaN NaN NaN https://twitter.com/dog_rates/status/751251247... 10 10 Gilbert doggo
960 751205363882532864 NaN NaN 2016-07-08 00:04:50 +0000 <a href="http://twitter.com/download/iphone" r... "This photographer took pics of her best frien... NaN NaN NaN https://twitter.com/dog_rates/status/751205363... 12 10 None doggo
961 751132876104687617 NaN NaN 2016-07-07 19:16:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He's just so damn happy. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/751132876... 10 10 Cooper doggo
962 750868782890057730 NaN NaN 2016-07-07 01:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milo. He hauled ass until he ran out of t... NaN NaN NaN https://twitter.com/dog_rates/status/750868782... 11 10 Milo doggo
963 750719632563142656 NaN NaN 2016-07-06 15:54:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Meyer. He has to hold somebody's hand ... NaN NaN NaN https://twitter.com/dog_rates/status/750719632... 12 10 Meyer doggo
964 750506206503038976 NaN NaN 2016-07-06 01:46:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He's absolutely terrified of ... NaN NaN NaN https://twitter.com/dog_rates/status/750506206... 8 10 Malcolm doggo
965 750429297815552001 NaN NaN 2016-07-05 20:41:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Arnie. He's a Nova Scotian Fridge Floo... NaN NaN NaN https://twitter.com/dog_rates/status/750429297... 12 10 Arnie doggo
966 750383411068534784 NaN NaN 2016-07-05 17:38:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoe. She was trying to stealthily take... NaN NaN NaN https://twitter.com/dog_rates/status/750383411... 9 10 Zoe doggo
967 750381685133418496 7.501805e+17 4.717297e+09 2016-07-05 17:31:49 +0000 <a href="http://twitter.com/download/iphone" r... 13/10 such a good doggo\n@spaghemily NaN NaN NaN NaN 13 10 None doggo
968 750147208377409536 NaN NaN 2016-07-05 02:00:06 +0000 <a href="http://twitter.com/download/iphone" r... And finally, happy 4th of July from the squad ... NaN NaN NaN https://twitter.com/dog_rates/status/750147208... 13 10 None doggo
969 750132105863102464 NaN NaN 2016-07-05 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Stewie. He will roundhouse kick anyone... NaN NaN NaN https://twitter.com/dog_rates/status/750132105... 11 10 Stewie doggo
970 750117059602808832 NaN NaN 2016-07-05 00:00:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Calvin. He just loves America so much.... NaN NaN NaN https://twitter.com/dog_rates/status/750117059... 10 10 Calvin doggo
971 750101899009982464 NaN NaN 2016-07-04 23:00:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lilah. She agreed on one quick pic. Now s... NaN NaN NaN https://twitter.com/dog_rates/status/750101899... 11 10 Lilah doggo
972 750086836815486976 NaN NaN 2016-07-04 22:00:12 +0000 <a href="https://about.twitter.com/products/tw... This is Spanky. He was a member of the 2002 US... NaN NaN NaN https://twitter.com/dog_rates/status/750086836... 12 10 Spanky doggo
973 750071704093859840 NaN NaN 2016-07-04 21:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Pause your cookout and admire this pupper's ni... NaN NaN NaN https://twitter.com/dog_rates/status/750071704... 10 10 None doggo
974 750056684286914561 NaN NaN 2016-07-04 20:00:23 +0000 <a href="https://about.twitter.com/products/tw... This is Jameson. He had a few too many in the ... NaN NaN NaN https://twitter.com/dog_rates/status/750056684... 11 10 Jameson doggo
975 750041628174217216 NaN NaN 2016-07-04 19:00:33 +0000 <a href="https://about.twitter.com/products/tw... This is Beau. He's trying to keep his daddy fr... NaN NaN NaN https://twitter.com/dog_rates/status/750041628... 13 10 Beau doggo
976 750026558547456000 NaN NaN 2016-07-04 18:00:41 +0000 <a href="https://about.twitter.com/products/tw... Meet Jax &amp; Jil. Jil is yelling the pledge ... NaN NaN NaN https://twitter.com/dog_rates/status/750026558... 10 10 Jax doggo
977 750011400160841729 NaN NaN 2016-07-04 17:00:26 +0000 <a href="https://about.twitter.com/products/tw... Meet Piper. She's an airport doggo. Please ret... NaN NaN NaN https://twitter.com/dog_rates/status/750011400... 11 10 Piper doggo
978 749996283729883136 NaN NaN 2016-07-04 16:00:22 +0000 <a href="https://about.twitter.com/products/tw... This is Bo. He emanates happiness. 12/10 I cou... NaN NaN NaN https://twitter.com/dog_rates/status/749996283... 12 10 Bo doggo
979 749981277374128128 NaN NaN 2016-07-04 15:00:45 +0000 <a href="https://about.twitter.com/products/tw... This is Atticus. He's quite simply America af.... NaN NaN NaN https://twitter.com/dog_rates/status/749981277... 1776 10 Atticus doggo
980 749774190421639168 NaN NaN 2016-07-04 01:17:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's a Benebop Cumberplop. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/749774190... 12 10 Lucy doggo
981 749417653287129088 NaN NaN 2016-07-03 01:41:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's the most unphotogenic puppe... NaN NaN NaN https://twitter.com/dog_rates/status/749417653... 11 10 Finn doggo
982 749403093750648834 NaN NaN 2016-07-03 00:43:15 +0000 <a href="http://twitter.com/download/iphone" r... Duuun dun... duuun dun... dunn dun. dunn dun.... NaN NaN NaN https://twitter.com/dog_rates/status/749403093... 10 10 None doggo
983 749395845976588288 NaN NaN 2016-07-03 00:14:27 +0000 <a href="http://twitter.com/download/iphone" r... This is George. He just remembered that bees a... NaN NaN NaN https://twitter.com/dog_rates/status/749395845... 10 10 George doggo
984 749317047558017024 NaN NaN 2016-07-02 19:01:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Blu. He's a wild bush Floofer. I wish ... NaN NaN NaN https://twitter.com/dog_rates/status/749317047... 12 10 Blu doggo
985 749075273010798592 NaN NaN 2016-07-02 03:00:36 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Boomer. He's self-baptizing. Other dog... NaN NaN NaN https://vine.co/v/5ztZvHgI17r 11 10 Boomer doggo
986 749064354620928000 NaN NaN 2016-07-02 02:17:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He's pupset because I forgot to ... NaN NaN NaN https://twitter.com/dog_rates/status/749064354... 11 10 Winston doggo
987 749036806121881602 NaN NaN 2016-07-02 00:27:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Dietrich. He hops at random. Other dog... NaN NaN NaN https://twitter.com/dog_rates/status/749036806... 8 10 Dietrich doggo
988 748977405889503236 NaN NaN 2016-07-01 20:31:43 +0000 <a href="http://twitter.com/download/iphone" r... What jokester sent in a pic without a dog in i... NaN NaN NaN https://twitter.com/dog_rates/status/748977405... 10 10 not doggo
989 748932637671223296 NaN NaN 2016-07-01 17:33:49 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Divine Doggo. Must be magical af.... NaN NaN NaN https://twitter.com/dog_rates/status/748932637... 13 10 Divine doggo
990 748705597323898880 NaN NaN 2016-07-01 02:31:39 +0000 <a href="http://twitter.com" rel="nofollow">Tw... #BarkWeek is getting rather heckin terrifying ... NaN NaN NaN https://twitter.com/dog_rates/status/748705597... 13 10 None doggo
991 748699167502000129 NaN NaN 2016-07-01 02:06:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tripp. He's being eaten by a sherk and do... NaN NaN NaN https://twitter.com/dog_rates/status/748699167... 11 10 Tripp doggo
992 748692773788876800 NaN NaN 2016-07-01 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... That is Quizno. This is his beach. He does not... NaN NaN NaN https://twitter.com/dog_rates/status/748692773... 10 10 his doggo
993 748575535303884801 NaN NaN 2016-06-30 17:54:50 +0000 <a href="http://twitter.com/download/iphone" r... This is one of the most reckless puppers I've ... NaN NaN NaN https://twitter.com/dog_rates/status/748575535... 6 10 one doggo
994 748568946752774144 NaN NaN 2016-06-30 17:28:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cora. She rings a bell for treats. 12/... NaN NaN NaN https://twitter.com/dog_rates/status/748568946... 12 10 Cora doggo
995 748346686624440324 NaN NaN 2016-06-30 02:45:28 +0000 <a href="http://twitter.com/download/iphone" r... "So... we meat again" (I'm so sorry for that p... NaN NaN NaN https://twitter.com/dog_rates/status/748346686... 10 10 None doggo
996 748337862848962560 NaN NaN 2016-06-30 02:10:24 +0000 <a href="http://vine.co" rel="nofollow">Vine -... SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek ht... NaN NaN NaN https://vine.co/v/h5aDaFthX6O 13 10 None doggo
997 748324050481647620 NaN NaN 2016-06-30 01:15:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He permanently looks like he jus... NaN NaN NaN https://twitter.com/dog_rates/status/748324050... 11 10 Duke doggo
998 748307329658011649 NaN NaN 2016-06-30 00:09:04 +0000 <a href="http://twitter.com/download/iphone" r... This sherk must've leapt out of the water and ... NaN NaN NaN https://twitter.com/dog_rates/status/748307329... 7 10 None doggo
999 748220828303695873 NaN NaN 2016-06-29 18:25:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Stop what you're doing and watch this heckin m... NaN NaN NaN https://vine.co/v/iiLjKuYJpr6 13 10 None doggo
... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1356 703425003149250560 7.030419e+17 4.196984e+09 2016-02-27 03:42:44 +0000 <a href="http://twitter.com/download/iphone" r... Really guys? Again? I know this is a rare Alba... NaN NaN NaN https://twitter.com/dog_rates/status/703425003... 9 10 None doggo
1357 703407252292673536 NaN NaN 2016-02-27 02:32:12 +0000 <a href="http://twitter.com/download/iphone" r... This pupper doesn't understand gates. 10/10 so... NaN NaN NaN https://twitter.com/dog_rates/status/703407252... 10 10 None doggo
1358 703382836347330562 NaN NaN 2016-02-27 00:55:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's a West Side Niddlewog. M... NaN NaN NaN https://twitter.com/dog_rates/status/703382836... 12 10 Charlie doggo
1359 703356393781329922 NaN NaN 2016-02-26 23:10:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Socks. That water pup w the super legs... NaN NaN NaN https://twitter.com/dog_rates/status/703356393... 9 10 Socks doggo
1360 703268521220972544 NaN NaN 2016-02-26 17:20:56 +0000 <a href="http://twitter.com/download/iphone" r... Happy Friday here's a sleepy pupper 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/703268521... 12 10 None doggo
1361 703079050210877440 NaN NaN 2016-02-26 04:48:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Butternut Cumberfloof. It's not wind... NaN NaN NaN https://twitter.com/dog_rates/status/703079050... 11 10 a doggo
1362 703041949650034688 NaN NaN 2016-02-26 02:20:37 +0000 <a href="http://twitter.com/download/iphone" r... This is an East African Chalupa Seal. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/703041949... 10 10 an doggo
1363 702932127499816960 NaN NaN 2016-02-25 19:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. He's an Upper West Nile Pantaloo... NaN NaN NaN https://twitter.com/dog_rates/status/702932127... 6 10 Chip doggo
1364 702899151802126337 NaN NaN 2016-02-25 16:53:11 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Say hello to Luna. Her tongue is malfunctionin... NaN NaN NaN https://vine.co/v/i6iIrBwnTFI 12 10 Luna doggo
1365 702684942141153280 NaN NaN 2016-02-25 02:42:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's sick of these bullshit gen... NaN NaN NaN https://twitter.com/dog_rates/status/702684942... 11 10 Lucy doggo
1366 702671118226825216 NaN NaN 2016-02-25 01:47:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rambo &amp; Kiwi. Rambo's the pup with th... NaN NaN NaN https://twitter.com/dog_rates/status/702671118... 10 10 Rambo doggo
1367 702598099714314240 NaN NaN 2016-02-24 20:56:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Sansa. She's gotten too big for her ch... NaN NaN NaN https://twitter.com/dog_rates/status/702598099... 11 10 Sansa doggo
1368 702539513671897089 NaN NaN 2016-02-24 17:04:07 +0000 <a href="http://twitter.com/download/iphone" r... This is a Wild Tuscan Poofwiggle. Careful not ... NaN NaN NaN https://twitter.com/dog_rates/status/702539513... 12 10 a doggo
1369 702332542343577600 NaN NaN 2016-02-24 03:21:41 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rudy. He's going to be a star. 13/10 t... NaN NaN NaN https://vine.co/v/irlDujgwOjd 13 10 Rudy doggo
1370 702321140488925184 NaN NaN 2016-02-24 02:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Please enjoy this picture as much as I did. 12... NaN NaN NaN https://twitter.com/dog_rates/status/702321140... 12 10 None doggo
1371 702276748847800320 NaN NaN 2016-02-23 23:39:59 +0000 <a href="http://twitter.com/download/iphone" r... "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOV... NaN NaN NaN https://twitter.com/dog_rates/status/702276748... 11 10 None doggo
1372 702217446468493312 NaN NaN 2016-02-23 19:44:20 +0000 <a href="http://twitter.com/download/iphone" r... I know it's tempting, but please stop sending ... NaN NaN NaN https://twitter.com/dog_rates/status/702217446... 9 10 None doggo
1373 701981390485725185 NaN NaN 2016-02-23 04:06:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiji. She's a Powdered Stegafloof. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/701981390... 12 10 Fiji doggo
1374 701952816642965504 NaN NaN 2016-02-23 02:12:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rilo. He's a Northern Curly Ticonderoga. ... NaN NaN NaN https://twitter.com/dog_rates/status/701952816... 11 10 Rilo doggo
1375 701889187134500865 NaN NaN 2016-02-22 21:59:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Bilbo. He's not emotionally prepared t... NaN NaN NaN https://twitter.com/dog_rates/status/701889187... 11 10 Bilbo doggo
1376 701805642395348998 NaN NaN 2016-02-22 16:27:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Please pray for this pupper. Nothing wrong wit... NaN NaN NaN https://vine.co/v/ivV6Y37mH5Z 11 10 None doggo
1377 701601587219795968 NaN NaN 2016-02-22 02:57:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Coopson. He's a Blingin Schnitzel. Bui... NaN NaN NaN https://twitter.com/dog_rates/status/701601587... 10 10 Coopson doggo
1378 701570477911896070 NaN NaN 2016-02-22 00:53:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Yoda. He's a Zimbabwean Rutabaga. Frea... NaN NaN NaN https://twitter.com/dog_rates/status/701570477... 9 10 Yoda doggo
1379 701545186879471618 NaN NaN 2016-02-21 23:13:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Millie. She's practicing her dive form fo... NaN NaN NaN https://twitter.com/dog_rates/status/701545186... 10 10 Millie doggo
1380 701214700881756160 NaN NaN 2016-02-21 01:19:47 +0000 <a href="http://twitter.com/download/iphone" r... I'm not sure what's happening here, but it's p... NaN NaN NaN https://twitter.com/dog_rates/status/701214700... 12 10 None doggo
1381 700890391244103680 NaN NaN 2016-02-20 03:51:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Chet. He's dapper af. His owners want ... NaN NaN NaN https://twitter.com/dog_rates/status/700890391... 11 10 Chet doggo
1382 700864154249383937 NaN NaN 2016-02-20 02:06:50 +0000 <a href="http://twitter.com/download/iphone" r... "Pupper is a present to world. Here is a bow f... NaN NaN NaN https://twitter.com/dog_rates/status/700864154... 12 10 a doggo
1383 700847567345688576 NaN NaN 2016-02-20 01:00:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Crouton. He's a Galapagos Boonwiddle. Has... NaN NaN NaN https://twitter.com/dog_rates/status/700847567... 10 10 Crouton doggo
1384 700796979434098688 NaN NaN 2016-02-19 21:39:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Daniel. He's a neat pup. Exotic af. Cu... NaN NaN NaN https://twitter.com/dog_rates/status/700796979... 7 10 Daniel doggo
1385 700747788515020802 NaN NaN 2016-02-19 18:24:26 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/700747788... 11 10 very doggo
1386 700518061187723268 NaN NaN 2016-02-19 03:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's the man your girl is wit... NaN NaN NaN https://twitter.com/dog_rates/status/700518061... 10 10 Vincent doggo
1387 700505138482569216 NaN NaN 2016-02-19 02:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Kaia. She's just cute as hell. 12/10 I... NaN NaN NaN https://twitter.com/dog_rates/status/700505138... 12 10 Kaia doggo
1388 700462010979500032 NaN NaN 2016-02-18 23:28:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Murphy. He's a mini golden retriever. ... NaN NaN NaN https://twitter.com/dog_rates/status/700462010... 6 10 Murphy doggo
1389 700167517596164096 NaN NaN 2016-02-18 03:58:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dotsy. She's stuck as hell. 10/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/700167517... 10 10 Dotsy doggo
1390 700151421916807169 NaN NaN 2016-02-18 02:54:41 +0000 <a href="http://twitter.com/download/iphone" r... If a pupper gave that to me I'd probably start... NaN NaN NaN https://twitter.com/dog_rates/status/700151421... 11 10 None doggo
1391 700143752053182464 NaN NaN 2016-02-18 02:24:13 +0000 <a href="http://twitter.com/download/iphone" r... When it's Janet from accounting's birthday but... NaN NaN NaN https://twitter.com/dog_rates/status/700143752... 10 10 None doggo
1392 700062718104104960 NaN NaN 2016-02-17 21:02:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Eazy-E. He's colorful af. Must be rare... NaN NaN NaN https://twitter.com/dog_rates/status/700062718... 6 10 Eazy doggo
1393 700029284593901568 NaN NaN 2016-02-17 18:49:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Coops. His ship is taking on water. So... NaN NaN NaN https://twitter.com/dog_rates/status/700029284... 10 10 Coops doggo
1394 700002074055016451 NaN NaN 2016-02-17 17:01:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Thumas. He covered himself in nanners ... NaN NaN NaN https://twitter.com/dog_rates/status/700002074... 9 10 Thumas doggo
1395 699801817392291840 NaN NaN 2016-02-17 03:45:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He began to tear up when his b... NaN NaN NaN https://twitter.com/dog_rates/status/699801817... 11 10 Cooper doggo
1396 699788877217865730 NaN NaN 2016-02-17 02:54:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Nala. She's a Freckled High Brusc... NaN NaN NaN https://twitter.com/dog_rates/status/699788877... 12 10 Nala doggo
1397 699779630832685056 NaN NaN 2016-02-17 02:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Take all my money. 10/10 https://t.co/B28ebc5LzQ NaN NaN NaN https://twitter.com/dog_rates/status/699779630... 10 10 None doggo
1398 699775878809702401 NaN NaN 2016-02-17 02:02:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fillup. Spaghetti is his main weakness. A... NaN NaN NaN https://twitter.com/dog_rates/status/699775878... 11 10 Fillup doggo
1399 699691744225525762 NaN NaN 2016-02-16 20:28:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He's a tropical pup. Short lil l... NaN NaN NaN https://twitter.com/dog_rates/status/699691744... 5 10 Dave doggo
1400 699446877801091073 NaN NaN 2016-02-16 04:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He's undercover in all these p... NaN NaN NaN https://twitter.com/dog_rates/status/699446877... 12 10 Archie doggo
1401 699434518667751424 NaN NaN 2016-02-16 03:25:58 +0000 <a href="http://twitter.com/download/iphone" r... I know this is a tad late but here's a wonderf... NaN NaN NaN https://twitter.com/dog_rates/status/699434518... 12 10 None doggo
1402 699423671849451520 NaN NaN 2016-02-16 02:42:52 +0000 <a href="http://twitter.com/download/iphone" r... "Don't ever talk to me or my son again." ...bo... NaN NaN NaN https://twitter.com/dog_rates/status/699423671... 10 10 None doggo
1403 699413908797464576 NaN NaN 2016-02-16 02:04:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Miley. She's a Scandinavian Hollabackgirl... NaN NaN NaN https://twitter.com/dog_rates/status/699413908... 11 10 Miley doggo
1404 699370870310113280 NaN NaN 2016-02-15 23:13:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Calbert. He doesn't have enough l... NaN NaN NaN https://twitter.com/dog_rates/status/699370870... 11 10 Calbert doggo
1405 699323444782047232 NaN NaN 2016-02-15 20:04:36 +0000 <a href="http://twitter.com/download/iphone" r... "I'm bathing the children what do you want?" ... NaN NaN NaN https://twitter.com/dog_rates/status/699323444... 10 10 None doggo
1406 699088579889332224 NaN NaN 2016-02-15 04:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charl. He's a bully. Chucks that dumbb... NaN NaN NaN https://twitter.com/dog_rates/status/699088579... 3 10 Charl doggo
1407 699079609774645248 NaN NaN 2016-02-15 03:55:41 +0000 <a href="http://twitter.com/download/iphone" r... Meet Reagan. He's a Persnicketus Derpson. Grea... NaN NaN NaN https://twitter.com/dog_rates/status/699079609... 8 10 Reagan doggo
1408 699072405256409088 NaN NaN 2016-02-15 03:27:04 +0000 <a href="http://twitter.com/download/iphone" r... ERMAHGERD 12/10 please enjoy https://t.co/7WrA... NaN NaN NaN https://twitter.com/dog_rates/status/699072405... 12 10 None doggo
1409 699060279947165696 NaN NaN 2016-02-15 02:38:53 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Yukon. He pukes rainbows. 12/10 magica... NaN NaN NaN https://vine.co/v/inlmMHxtqDD 12 10 Yukon doggo
1410 699036661657767936 NaN NaN 2016-02-15 01:05:02 +0000 <a href="http://twitter.com/download/iphone" r... HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 f... NaN NaN NaN https://twitter.com/dog_rates/status/699036661... 13 10 None doggo
1411 698989035503689728 NaN NaN 2016-02-14 21:55:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He does toe touches in his sle... NaN NaN NaN https://twitter.com/dog_rates/status/698989035... 13 10 Oliver doggo
1412 698953797952008193 NaN NaN 2016-02-14 19:35:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet CeCe. She wanted to take a selfie before ... NaN NaN NaN https://twitter.com/dog_rates/status/698953797... 11 10 CeCe doggo
1413 698907974262222848 NaN NaN 2016-02-14 16:33:40 +0000 <a href="http://twitter.com/download/iphone" r... This dog is never sure if he's doing the right... NaN NaN NaN https://twitter.com/dog_rates/status/698907974... 10 10 None doggo
1414 698710712454139905 NaN NaN 2016-02-14 03:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Cuddles. He's not entirely sure how do... NaN NaN NaN https://twitter.com/dog_rates/status/698710712... 10 10 Cuddles doggo
1415 698703483621523456 NaN NaN 2016-02-14 03:01:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He has no respect for POULTRY p... NaN NaN NaN https://twitter.com/dog_rates/status/698703483... 7 10 Rusty doggo
1416 698635131305795584 NaN NaN 2016-02-13 22:29:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we are witnessing five Guatemalan Birch F... NaN NaN NaN https://twitter.com/dog_rates/status/698635131... 12 10 None doggo
1417 698549713696649216 NaN NaN 2016-02-13 16:50:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Claude. He's trying to be seductive bu... NaN NaN NaN https://twitter.com/dog_rates/status/698549713... 9 10 Claude doggo
1418 698355670425473025 NaN NaN 2016-02-13 03:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jessiga. She's a Tasmanian McCringlebe... NaN NaN NaN https://twitter.com/dog_rates/status/698355670... 10 10 Jessiga doggo
1419 698342080612007937 NaN NaN 2016-02-13 03:05:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Maximus. He's training for the tetherb... NaN NaN NaN https://twitter.com/dog_rates/status/698342080... 11 10 Maximus doggo
1420 698262614669991936 NaN NaN 2016-02-12 21:49:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He's a yoga master. Trying t... NaN NaN NaN https://twitter.com/dog_rates/status/698262614... 11 10 Franklin doggo
1421 698195409219559425 NaN NaN 2016-02-12 17:22:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Beau &amp; Wilbur. Wilbur stole Beau's be... NaN NaN NaN https://twitter.com/dog_rates/status/698195409... 9 10 Beau doggo
1422 698178924120031232 NaN NaN 2016-02-12 16:16:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Lily. She accidentally dropped all her... NaN NaN NaN https://twitter.com/dog_rates/status/698178924... 10 10 Lily doggo
1423 697995514407682048 NaN NaN 2016-02-12 04:07:53 +0000 <a href="http://twitter.com/download/iphone" r... "Dammit hooman quit playin I jus wanna wheat t... NaN NaN NaN https://twitter.com/dog_rates/status/697995514... 11 10 None doggo
1424 697990423684476929 NaN NaN 2016-02-12 03:47:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Doug. He's a Draconian Jabbawockee. Ra... NaN NaN NaN https://twitter.com/dog_rates/status/697990423... 11 10 Doug doggo
1425 697943111201378304 NaN NaN 2016-02-12 00:39:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She goes door to door trying t... NaN NaN NaN https://twitter.com/dog_rates/status/697943111... 10 10 Cassie doggo
1426 697881462549430272 NaN NaN 2016-02-11 20:34:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Carter. He wakes up in the morning and... NaN NaN NaN https://twitter.com/dog_rates/status/697881462... 10 10 Carter doggo
1427 697630435728322560 NaN NaN 2016-02-11 03:57:11 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Pls make sure ur dogs have gone through some b... NaN NaN NaN https://vine.co/v/in7ZzHPKzWz 8 10 None doggo
1428 697616773278015490 NaN NaN 2016-02-11 03:02:54 +0000 <a href="http://twitter.com/download/iphone" r... This pupper doubles as a hallway rug. Very rar... NaN NaN NaN https://twitter.com/dog_rates/status/697616773... 11 10 None doggo
1429 697596423848730625 NaN NaN 2016-02-11 01:42:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with a piece of pizza. Two of ... NaN NaN NaN https://twitter.com/dog_rates/status/697596423... 11 10 None doggo
1430 697575480820686848 NaN NaN 2016-02-11 00:18:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Ole. He's not sure how to gravity. 8/1... NaN NaN NaN https://twitter.com/dog_rates/status/697575480... 8 10 Ole doggo
1431 697516214579523584 NaN NaN 2016-02-10 20:23:19 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Say hello to Pherb. He does parkour. 9/10 http... NaN NaN NaN https://vine.co/v/i1LriMBmX6W 9 10 Pherb doggo
1432 697482927769255936 NaN NaN 2016-02-10 18:11:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Blipson. He's a Doowap Hufflepuff. That U... NaN NaN NaN https://twitter.com/dog_rates/status/697482927... 11 10 Blipson doggo
1433 697463031882764288 NaN NaN 2016-02-10 16:51:59 +0000 <a href="http://twitter.com/download/iphone" r... Happy Wednesday here's a bucket of pups. 44/40... NaN NaN NaN https://twitter.com/dog_rates/status/697463031... 44 40 None doggo
1434 697270446429966336 NaN NaN 2016-02-10 04:06:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. He got stuck on his 3rd homew... NaN NaN NaN https://twitter.com/dog_rates/status/697270446... 10 10 Bentley doggo
1435 697259378236399616 NaN NaN 2016-02-10 03:22:44 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in saber-toothed tigers. T... NaN NaN NaN https://twitter.com/dog_rates/status/697259378... 8 10 getting doggo
1436 697255105972801536 NaN NaN 2016-02-10 03:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. He likes to kiss all the big mil... NaN NaN NaN https://twitter.com/dog_rates/status/697255105... 10 10 Charlie doggo
1437 697242256848379904 NaN NaN 2016-02-10 02:14:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He has a massive tumor growing... NaN NaN NaN https://twitter.com/dog_rates/status/697242256... 10 10 Oakley doggo
1438 696900204696625153 NaN NaN 2016-02-09 03:35:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She's a Benebark Cumberpatch. S... NaN NaN NaN https://twitter.com/dog_rates/status/696900204... 12 10 Rosie doggo
1439 696894894812565505 NaN NaN 2016-02-09 03:14:25 +0000 <a href="http://twitter.com/download/iphone" r... These two pirates crashed their ship and don't... NaN NaN NaN https://twitter.com/dog_rates/status/696894894... 9 10 None doggo
1440 696886256886657024 NaN NaN 2016-02-09 02:40:05 +0000 <a href="http://twitter.com/download/iphone" r... Guys I found the dog from Up. 12/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/696886256... 12 10 None doggo
1441 696877980375769088 NaN NaN 2016-02-09 02:07:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Misty. She's in a predicament. Not sur... NaN NaN NaN https://twitter.com/dog_rates/status/696877980... 9 10 Misty doggo
1442 696754882863349760 NaN NaN 2016-02-08 17:58:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Reptar. He specifically asked for his ... NaN NaN NaN https://twitter.com/dog_rates/status/696754882... 10 10 Reptar doggo
1443 696744641916489729 NaN NaN 2016-02-08 17:17:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Klevin. He doesn't want his family bra... NaN NaN NaN https://vine.co/v/i1wrljBUjAu 10 10 Klevin doggo
1444 696713835009417216 NaN NaN 2016-02-08 15:14:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Trevith. He's a Swiss Mountain Roadwoo... NaN NaN NaN https://twitter.com/dog_rates/status/696713835... 9 10 Trevith doggo
1445 696518437233913856 NaN NaN 2016-02-08 02:18:30 +0000 <a href="http://twitter.com/download/iphone" r... Oh my god 10/10 for every little hot dog pupper NaN NaN NaN NaN 10 10 None doggo
1446 696490539101908992 6.964887e+17 4.196984e+09 2016-02-08 00:27:39 +0000 <a href="http://twitter.com/download/iphone" r... After reading the comments I may have overesti... NaN NaN NaN NaN 1 10 None doggo
1447 696488710901260288 NaN NaN 2016-02-08 00:20:23 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 revolutionary af https://t.co/zKzq4nIY86 NaN NaN NaN https://twitter.com/dog_rates/status/696488710... 12 10 None doggo
1448 696405997980676096 NaN NaN 2016-02-07 18:51:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Berb. He just found out that they have... NaN NaN NaN https://twitter.com/dog_rates/status/696405997... 7 10 Berb doggo
1449 696100768806522880 NaN NaN 2016-02-06 22:38:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This poor pupper has been stuck in a vortex si... NaN NaN NaN https://vine.co/v/i1KWj0vbvA9 10 10 None doggo
1450 695816827381944320 NaN NaN 2016-02-06 03:50:33 +0000 <a href="http://twitter.com/download/iphone" r... Here's a dog enjoying a sunset. 11/10 would tr... NaN NaN NaN https://twitter.com/dog_rates/status/695816827... 11 10 None doggo
1451 695794761660297217 NaN NaN 2016-02-06 02:22:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. His throne is modeled after him... NaN NaN NaN https://twitter.com/dog_rates/status/695794761... 13 10 Wyatt doggo
1452 695767669421768709 6.753494e+17 4.196984e+09 2016-02-06 00:35:13 +0000 <a href="http://twitter.com/download/iphone" r... If you are aware of who is making these please... NaN NaN NaN https://twitter.com/dog_rates/status/695767669... 13 10 None doggo
1453 695629776980148225 NaN NaN 2016-02-05 15:27:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Calvin. He's proof that degrees mean abso... NaN NaN NaN https://twitter.com/dog_rates/status/695629776... 8 10 Calvin doggo
1454 695446424020918272 NaN NaN 2016-02-05 03:18:42 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate unicorns but this one h... NaN NaN NaN https://twitter.com/dog_rates/status/695446424... 12 10 None doggo
1455 695409464418041856 NaN NaN 2016-02-05 00:51:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Bob. He just got back from his job int... NaN NaN NaN https://twitter.com/dog_rates/status/695409464... 10 10 Bob doggo
1456 695314793360662529 NaN NaN 2016-02-04 18:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Colin. He really likes green beans. It... NaN NaN NaN https://twitter.com/dog_rates/status/695314793... 10 10 Colin doggo
1457 695095422348574720 NaN NaN 2016-02-04 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... This is just a beautiful pupper good shit evol... NaN NaN NaN https://twitter.com/dog_rates/status/695095422... 12 10 just doggo
1458 695074328191332352 NaN NaN 2016-02-04 02:40:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lorenzo. He's educated af. Just gradua... NaN NaN NaN https://twitter.com/dog_rates/status/695074328... 11 10 Lorenzo doggo
1459 695064344191721472 NaN NaN 2016-02-04 02:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This may be the greatest video I've ever been ... NaN NaN NaN https://twitter.com/dog_rates/status/695064344... 4 10 None doggo
1460 695051054296211456 NaN NaN 2016-02-04 01:07:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brian (pronounced "Kirk"). He's not amuse... NaN NaN NaN https://twitter.com/dog_rates/status/695051054... 6 10 Brian doggo
1461 694925794720792577 NaN NaN 2016-02-03 16:49:55 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Please only send in dogs. This t-rex is very s... NaN NaN NaN https://vine.co/v/iJvUqWQ166L 5 10 None doggo
1462 694905863685980160 NaN NaN 2016-02-03 15:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He's a Bisquick Taj Mapaw. Too... NaN NaN NaN https://twitter.com/dog_rates/status/694905863... 10 10 Archie doggo
1463 694669722378485760 NaN NaN 2016-02-02 23:52:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Phil. He's an important dog. Can contr... NaN NaN NaN https://twitter.com/dog_rates/status/694669722... 12 10 Phil doggo
1464 694356675654983680 6.706684e+17 4.196984e+09 2016-02-02 03:08:26 +0000 <a href="http://twitter.com/download/iphone" r... This pupper only appears through the hole of a... NaN NaN NaN https://twitter.com/dog_rates/status/694356675... 10 10 None doggo
1465 694352839993344000 NaN NaN 2016-02-02 02:53:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Oliviér. He takes killer selfies. Has a d... NaN NaN NaN https://twitter.com/dog_rates/status/694352839... 10 10 Oliviér doggo
1466 694342028726001664 NaN NaN 2016-02-02 02:10:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... It's okay pup. This happens every time I liste... NaN NaN NaN https://vine.co/v/iJWKejYdLlh 11 10 None doggo
1467 694329668942569472 NaN NaN 2016-02-02 01:21:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grady. He's very hungry. Too bad no one c... NaN NaN NaN https://twitter.com/dog_rates/status/694329668... 9 10 Grady doggo
1468 694206574471057408 NaN NaN 2016-02-01 17:11:59 +0000 <a href="http://twitter.com/download/iphone" r... "Martha come take a look at this. I'm so fed u... NaN NaN NaN https://twitter.com/dog_rates/status/694206574... 10 10 None doggo
1469 694183373896572928 NaN NaN 2016-02-01 15:39:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She realized mid hug that she's ... NaN NaN NaN https://twitter.com/dog_rates/status/694183373... 9 10 Lola doggo
1470 694001791655137281 NaN NaN 2016-02-01 03:38:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Chester. He's a Benefloof Cumberbark. ... NaN NaN NaN https://twitter.com/dog_rates/status/694001791... 11 10 Chester doggo
1471 693993230313091072 NaN NaN 2016-02-01 03:04:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... These lil fellas are the best of friends. 12/1... NaN NaN NaN https://vine.co/v/i5ETazP5hrm 12 10 None doggo
1472 693942351086120961 NaN NaN 2016-01-31 23:42:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Kobe. He's a Speckled Rorschach. Reque... NaN NaN NaN https://twitter.com/dog_rates/status/693942351... 10 10 Kobe doggo
1473 693647888581312512 NaN NaN 2016-01-31 04:11:58 +0000 <a href="http://twitter.com/download/iphone" r... What kind of person sends in a pic without a d... NaN NaN NaN https://twitter.com/dog_rates/status/693647888... 7 10 None doggo
1474 693644216740769793 6.936422e+17 4.196984e+09 2016-01-31 03:57:23 +0000 <a href="http://twitter.com/download/iphone" r... BREAKING PUPDATE: I've just been notified that... NaN NaN NaN NaN 10 10 None doggo
1475 693642232151285760 NaN NaN 2016-01-31 03:49:30 +0000 <a href="http://twitter.com/download/iphone" r... Meet Freddery. He's a Westminster Toblerone. S... NaN NaN NaN https://twitter.com/dog_rates/status/693642232... 9 10 Freddery doggo
1476 693629975228977152 NaN NaN 2016-01-31 03:00:47 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is afraid of its own feet. 12/10 w... NaN NaN NaN https://twitter.com/dog_rates/status/693629975... 12 10 None doggo
1477 693622659251335168 NaN NaN 2016-01-31 02:31:43 +0000 <a href="http://twitter.com/download/iphone" r... When you keepin the popcorn bucket in your lap... NaN NaN NaN https://twitter.com/dog_rates/status/693622659... 10 10 None doggo
1478 693590843962331137 NaN NaN 2016-01-31 00:25:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phil. He's big af. Currently destroying t... NaN NaN NaN https://twitter.com/dog_rates/status/693590843... 3 10 Phil doggo
1479 693582294167244802 6.935722e+17 1.198989e+09 2016-01-30 23:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Personally I'd give him an 11/10. Not sure why... NaN NaN NaN NaN 11 10 None doggo
1480 693486665285931008 NaN NaN 2016-01-30 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Lincoln. He doesn't understand his new... NaN NaN NaN https://twitter.com/dog_rates/status/693486665... 11 10 Lincoln doggo
1481 693280720173801472 NaN NaN 2016-01-30 03:52:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie and her 2 pups Shebang &amp; Ruf... NaN NaN NaN https://twitter.com/dog_rates/status/693280720... 10 10 Sadie doggo
1482 693267061318012928 NaN NaN 2016-01-30 02:58:42 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Oscar. He can wave. Friendly af. 12/10... NaN NaN NaN https://vine.co/v/i5n2irFUYWv 12 10 Oscar doggo
1483 693262851218264065 NaN NaN 2016-01-30 02:41:58 +0000 <a href="http://twitter.com/download/iphone" r... I hope you guys enjoy this beautiful snowy pup... NaN NaN NaN https://twitter.com/dog_rates/status/693262851... 11 10 None doggo
1484 693231807727280129 NaN NaN 2016-01-30 00:38:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Bodie. He's not proud of what he did, ... NaN NaN NaN https://twitter.com/dog_rates/status/693231807... 9 10 Bodie doggo
1485 693155686491000832 NaN NaN 2016-01-29 19:36:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Dunkin. He can only see when he's wet ... NaN NaN NaN https://twitter.com/dog_rates/status/693155686... 12 10 Dunkin doggo
1486 693109034023534592 NaN NaN 2016-01-29 16:30:45 +0000 <a href="http://twitter.com/download/iphone" r... "Thank you friend that was a swell petting" 11... NaN NaN NaN https://twitter.com/dog_rates/status/693109034... 11 10 None doggo
1487 693095443459342336 NaN NaN 2016-01-29 15:36:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. He doesn't understand your fancy... NaN NaN NaN https://twitter.com/dog_rates/status/693095443... 10 10 Milo doggo
1488 692919143163629568 NaN NaN 2016-01-29 03:56:12 +0000 <a href="http://twitter.com/download/iphone" r... Please only send in dogs. Don't submit other t... NaN NaN NaN https://twitter.com/dog_rates/status/692919143... 9 10 None doggo
1489 692905862751522816 NaN NaN 2016-01-29 03:03:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's being abducted by aliens. ... NaN NaN NaN https://twitter.com/dog_rates/status/692905862... 10 10 Wally doggo
1490 692901601640583168 NaN NaN 2016-01-29 02:46:29 +0000 <a href="http://twitter.com/download/iphone" r... "Fuck the system" 10/10 https://t.co/N0OADmCnVV NaN NaN NaN https://twitter.com/dog_rates/status/692901601... 10 10 None doggo
1491 692894228850999298 NaN NaN 2016-01-29 02:17:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tupawc. He's actually a Christian rapper.... NaN NaN NaN https://twitter.com/dog_rates/status/692894228... 10 10 Tupawc doggo
1492 692828166163931137 NaN NaN 2016-01-28 21:54:41 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just descended from heaven. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/692828166... 12 10 None doggo
1493 692752401762250755 NaN NaN 2016-01-28 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... "Hello yes could I get one pupper to go please... NaN NaN NaN https://twitter.com/dog_rates/status/692752401... 13 10 None doggo
1494 692568918515392513 NaN NaN 2016-01-28 04:44:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Chester. He's been guarding this pumpk... NaN NaN NaN https://twitter.com/dog_rates/status/692568918... 12 10 Chester doggo
1495 692535307825213440 NaN NaN 2016-01-28 02:30:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Amber. She's a Fetty Woof. 10/10 would... NaN NaN NaN https://twitter.com/dog_rates/status/692535307... 10 10 Amber doggo
1496 692530551048294401 NaN NaN 2016-01-28 02:12:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cody. He's been to like 80 countr... NaN NaN NaN https://twitter.com/dog_rates/status/692530551... 10 10 Cody doggo
1497 692423280028966913 6.924173e+17 4.196984e+09 2016-01-27 19:05:49 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: just noticed this dog has some extra ... NaN NaN NaN NaN 9 10 None doggo
1498 692417313023332352 NaN NaN 2016-01-27 18:42:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herschel. He's slightly bigger than ur av... NaN NaN NaN https://twitter.com/dog_rates/status/692417313... 7 10 Herschel doggo
1499 692187005137076224 NaN NaN 2016-01-27 03:26:56 +0000 <a href="http://twitter.com/download/iphone" r... This is a rare Arctic Wubberfloof. Unamused by... NaN NaN NaN https://twitter.com/dog_rates/status/692187005... 12 10 a doggo
1500 692158366030913536 NaN NaN 2016-01-27 01:33:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Edgar. He's a Sassafras Puggleflash. N... NaN NaN NaN https://twitter.com/dog_rates/status/692158366... 10 10 Edgar doggo
1501 692142790915014657 6.920419e+17 4.196984e+09 2016-01-27 00:31:15 +0000 <a href="http://twitter.com/download/iphone" r... These are some pictures of Teddy that further ... NaN NaN NaN https://twitter.com/dog_rates/status/692142790... 13 10 None doggo
1502 692041934689402880 NaN NaN 2016-01-26 17:50:29 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Teddy. His head is too heavy. 13/10 (v... NaN NaN NaN https://vine.co/v/iiI3wmqXYmA 13 10 Teddy doggo
1503 692017291282812928 NaN NaN 2016-01-26 16:12:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Kingsley Wellensworth III. He owns 7 r... NaN NaN NaN https://twitter.com/dog_rates/status/692017291... 9 10 Kingsley doggo
1504 691820333922455552 NaN NaN 2016-01-26 03:09:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Brockly. He's an uber driver. Falls as... NaN NaN NaN https://twitter.com/dog_rates/status/691820333... 8 10 Brockly doggo
1505 691793053716221953 NaN NaN 2016-01-26 01:21:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... We usually don't rate penguins but this one is... NaN NaN NaN https://vine.co/v/OTTVAKw6YlW 10 10 None doggo
1506 691756958957883396 NaN NaN 2016-01-25 22:58:05 +0000 <a href="http://twitter.com/download/iphone" r... THE BRITISH ARE COMING\nTHE BRITISH ARE COMING... NaN NaN NaN https://twitter.com/dog_rates/status/691756958... 10 10 None doggo
1507 691675652215414786 NaN NaN 2016-01-25 17:35:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Richie and Plip. They are the best of ... NaN NaN NaN https://twitter.com/dog_rates/status/691675652... 10 10 Richie doggo
1508 691483041324204033 NaN NaN 2016-01-25 04:49:38 +0000 <a href="http://twitter.com/download/iphone" r... When bae says they can't go out but you see th... NaN NaN NaN https://twitter.com/dog_rates/status/691483041... 5 10 None doggo
1509 691459709405118465 NaN NaN 2016-01-25 03:16:56 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Leo. He's a Fallopian Puffalope. ... NaN NaN NaN https://twitter.com/dog_rates/status/691459709... 12 10 Leo doggo
1510 691444869282295808 NaN NaN 2016-01-25 02:17:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She likes flowers. 12/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/691444869... 12 10 Bailey doggo
1511 691416866452082688 NaN NaN 2016-01-25 00:26:41 +0000 <a href="http://twitter.com/download/iphone" r... I present to you... Dog Jesus. 13/10 (he could... NaN NaN NaN https://twitter.com/dog_rates/status/691416866... 13 10 None doggo
1512 691321916024623104 NaN NaN 2016-01-24 18:09:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Molly. She's a Peruvian Niddlewog. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/691321916... 11 10 Molly doggo
1513 691096613310316544 NaN NaN 2016-01-24 03:14:07 +0000 <a href="http://twitter.com/download/iphone" r... Here we see one dog giving a puptalk to anothe... NaN NaN NaN https://twitter.com/dog_rates/status/691096613... 11 10 None doggo
1514 691090071332753408 NaN NaN 2016-01-24 02:48:07 +0000 <a href="http://twitter.com/download/iphone" r... Happy Saturday here's a dog in a mailbox. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/691090071... 12 10 None doggo
1515 690989312272396288 NaN NaN 2016-01-23 20:07:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... We've got a doggy down. Requesting backup. 12/... NaN NaN NaN https://vine.co/v/iOZKZEU2nHq 12 10 None doggo
1516 690959652130045952 NaN NaN 2016-01-23 18:09:53 +0000 <a href="http://twitter.com/download/iphone" r... This golden is happy to refute the soft mouth ... NaN NaN NaN https://twitter.com/dog_rates/status/690959652... 11 10 None doggo
1517 690938899477221376 NaN NaN 2016-01-23 16:47:25 +0000 <a href="http://twitter.com/download/iphone" r... She thought the sunset was pretty, but I thoug... NaN NaN NaN https://twitter.com/dog_rates/status/690938899... 10 10 None doggo
1518 690932576555528194 NaN NaN 2016-01-23 16:22:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's testing out the water. Suc... NaN NaN NaN https://twitter.com/dog_rates/status/690932576... 12 10 Buddy doggo
1519 690735892932222976 NaN NaN 2016-01-23 03:20:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Peaches. She's a Dingleberry Zand... NaN NaN NaN https://twitter.com/dog_rates/status/690735892... 13 10 Peaches doggo
1520 690728923253055490 NaN NaN 2016-01-23 02:53:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Vinscent. He was just questioned about... NaN NaN NaN https://twitter.com/dog_rates/status/690728923... 8 10 Vinscent doggo
1521 690690673629138944 NaN NaN 2016-01-23 00:21:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Cedrick. He's a spookster. Did me a di... NaN NaN NaN https://twitter.com/dog_rates/status/690690673... 10 10 Cedrick doggo
1522 690649993829576704 NaN NaN 2016-01-22 21:39:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Hazel. She's a gymnast. Training hard ... NaN NaN NaN https://twitter.com/dog_rates/status/690649993... 11 10 Hazel doggo
1523 690607260360429569 6.903413e+17 4.670367e+08 2016-01-22 18:49:36 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 @LightningHoltt NaN NaN NaN NaN 12 10 None doggo
1524 690597161306841088 NaN NaN 2016-01-22 18:09:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lolo. She's America af. Behind in scie... NaN NaN NaN https://twitter.com/dog_rates/status/690597161... 11 10 Lolo doggo
1525 690400367696297985 NaN NaN 2016-01-22 05:07:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Eriq. His friend just reminded him of ... NaN NaN NaN https://twitter.com/dog_rates/status/690400367... 10 10 Eriq doggo
1526 690374419777196032 NaN NaN 2016-01-22 03:24:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Phred. He's an Albanian Flepperkush. T... NaN NaN NaN https://twitter.com/dog_rates/status/690374419... 11 10 Phred doggo
1527 690360449368465409 NaN NaN 2016-01-22 02:28:52 +0000 <a href="http://twitter.com/download/iphone" r... Stop sending in lobsters. This is the final wa... NaN NaN NaN https://twitter.com/dog_rates/status/690360449... 9 10 the doggo
1528 690348396616552449 NaN NaN 2016-01-22 01:40:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Oddie. He's trying to communicate. 12/... NaN NaN NaN https://vine.co/v/iejBWerY9X2 12 10 Oddie doggo
1529 690248561355657216 NaN NaN 2016-01-21 19:04:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Maxwell. That's his moped. He rents it... NaN NaN NaN https://twitter.com/dog_rates/status/690248561... 11 10 Maxwell doggo
1530 690021994562220032 NaN NaN 2016-01-21 04:03:58 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Geoff (pronounced "Kyle"). He acc... NaN NaN NaN https://twitter.com/dog_rates/status/690021994... 10 10 Geoff doggo
1531 690015576308211712 NaN NaN 2016-01-21 03:38:27 +0000 <a href="http://twitter.com/download/iphone" r... This pupper can only sleep on shoes. It's a cr... NaN NaN NaN https://twitter.com/dog_rates/status/690015576... 12 10 None doggo
1532 690005060500217858 NaN NaN 2016-01-21 02:56:40 +0000 <a href="http://twitter.com/download/iphone" r... "I'm the only one that ever does anything in t... NaN NaN NaN https://twitter.com/dog_rates/status/690005060... 10 10 None doggo
1533 689999384604450816 NaN NaN 2016-01-21 02:34:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Covach. He's trying to melt the snow. ... NaN NaN NaN https://twitter.com/dog_rates/status/689999384... 10 10 Covach doggo
1534 689993469801164801 NaN NaN 2016-01-21 02:10:37 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a rare High Stepping Al... NaN NaN NaN https://vine.co/v/ienexVMZgi5 12 10 None doggo
1535 689977555533848577 NaN NaN 2016-01-21 01:07:23 +0000 <a href="http://twitter.com/download/iphone" r... Happy Wednesday here's a pup wearing a beret. ... NaN NaN NaN https://twitter.com/dog_rates/status/689977555... 12 10 None doggo
1536 689905486972461056 NaN NaN 2016-01-20 20:21:00 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's quite the pupper. Con... NaN NaN NaN https://twitter.com/dog_rates/status/689905486... 11 10 Gizmo doggo
1537 689877686181715968 NaN NaN 2016-01-20 18:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Durg. He's trying to conquer his fear ... NaN NaN NaN https://twitter.com/dog_rates/status/689877686... 9 10 Durg doggo
1538 689835978131935233 NaN NaN 2016-01-20 15:44:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fynn &amp; Taco. Fynn is an all-powerful ... NaN NaN NaN https://twitter.com/dog_rates/status/689835978... 11 10 Fynn doggo
1539 689661964914655233 NaN NaN 2016-01-20 04:13:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Luca. He's a Butternut Scooperfloof. Glor... NaN NaN NaN https://twitter.com/dog_rates/status/689661964... 12 10 Luca doggo
1540 689659372465688576 NaN NaN 2016-01-20 04:03:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ricky. He's being escorted out of the ... NaN NaN NaN https://twitter.com/dog_rates/status/689659372... 8 10 Ricky doggo
1541 689623661272240129 NaN NaN 2016-01-20 01:41:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's terrified of the stuffed b... NaN NaN NaN https://twitter.com/dog_rates/status/689623661... 10 10 Lucy doggo
1542 689599056876867584 NaN NaN 2016-01-20 00:03:21 +0000 <a href="http://twitter.com/download/iphone" r... Here we see 33 dogs posing for a picture. All ... NaN NaN NaN https://twitter.com/dog_rates/status/689599056... 11 10 None doggo
1543 689557536375177216 NaN NaN 2016-01-19 21:18:22 +0000 <a href="http://twitter.com/download/iphone" r... Downright majestic af 12/10 https://t.co/WFh2F... NaN NaN NaN https://twitter.com/dog_rates/status/689557536... 12 10 None doggo
1544 689517482558820352 NaN NaN 2016-01-19 18:39:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He just wants to make sure you'r... NaN NaN NaN https://twitter.com/dog_rates/status/689517482... 12 10 Carl doggo
1545 689289219123089408 NaN NaN 2016-01-19 03:32:10 +0000 <a href="http://twitter.com/download/iphone" r... Someone sent me this without any context and e... NaN NaN NaN https://twitter.com/dog_rates/status/689289219... 13 10 None doggo
1546 689283819090870273 NaN NaN 2016-01-19 03:10:43 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Chipson. He's aerodynamic af. No ... NaN NaN NaN https://twitter.com/dog_rates/status/689283819... 9 10 Chipson doggo
1547 689280876073582592 NaN NaN 2016-01-19 02:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He wants you to know he could ... NaN NaN NaN https://twitter.com/dog_rates/status/689280876... 10 10 Herald doggo
1548 689275259254616065 NaN NaN 2016-01-19 02:36:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lucky. He was showing his friends an extr... NaN NaN NaN https://twitter.com/dog_rates/status/689275259... 10 10 Lucky doggo
1549 689255633275777024 NaN NaN 2016-01-19 01:18:43 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ferg. He swallowed a chainsaw. 1 like ... NaN NaN NaN https://vine.co/v/iOL792n5hz2 10 10 Ferg doggo
1550 689154315265683456 NaN NaN 2016-01-18 18:36:07 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate birds but I feel bad co... NaN NaN NaN https://twitter.com/dog_rates/status/689154315... 9 10 None doggo
1551 689143371370250240 NaN NaN 2016-01-18 17:52:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trip. He likes wearing costumes that aren... NaN NaN NaN https://twitter.com/dog_rates/status/689143371... 10 10 Trip doggo
1552 688916208532455424 NaN NaN 2016-01-18 02:49:58 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just wants to say hello. 11/10 wou... NaN NaN NaN https://twitter.com/dog_rates/status/688916208... 11 10 None doggo
1553 688908934925697024 NaN NaN 2016-01-18 02:21:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clarence. He does parkour. 8/10 very tale... NaN NaN NaN https://twitter.com/dog_rates/status/688908934... 8 10 Clarence doggo
1554 688898160958271489 NaN NaN 2016-01-18 01:38:15 +0000 <a href="http://twitter.com/download/iphone" r... When you have a ton of work to do but then rem... NaN NaN NaN https://twitter.com/dog_rates/status/688898160... 10 10 None doggo
1555 688894073864884227 NaN NaN 2016-01-18 01:22:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Hamrick. He's covered in corn flakes. ... NaN NaN NaN https://twitter.com/dog_rates/status/688894073... 7 10 Hamrick doggo
1556 688828561667567616 NaN NaN 2016-01-17 21:01:41 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brad. His car probably has a spoi... NaN NaN NaN https://twitter.com/dog_rates/status/688828561... 9 10 Brad doggo
1557 688804835492233216 NaN NaN 2016-01-17 19:27:24 +0000 <a href="http://twitter.com/download/iphone" r... When you stumble but recover quickly cause you... NaN NaN NaN https://twitter.com/dog_rates/status/688804835... 12 10 None doggo
1558 688789766343622656 NaN NaN 2016-01-17 18:27:32 +0000 <a href="http://twitter.com/download/iphone" r... Meet Pubert. He's a Kerplunk Rumplestilt. Cann... NaN NaN NaN https://twitter.com/dog_rates/status/688789766... 8 10 Pubert doggo
1559 688547210804498433 NaN NaN 2016-01-17 02:23:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Frönq. He got caught stealing a waffle... NaN NaN NaN https://twitter.com/dog_rates/status/688547210... 9 10 Frönq doggo
1560 688519176466644993 NaN NaN 2016-01-17 00:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is sprouting a flower out of her h... NaN NaN NaN https://twitter.com/dog_rates/status/688519176... 12 10 None doggo
1561 688385280030670848 NaN NaN 2016-01-16 15:40:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's takes top-notch selfies. 1... NaN NaN NaN https://twitter.com/dog_rates/status/688385280... 12 10 Louis doggo
1562 688211956440801280 NaN NaN 2016-01-16 04:11:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Derby. He's a superstar. 13/10 (vid by... NaN NaN NaN https://twitter.com/dog_rates/status/688211956... 13 10 Derby doggo
1563 688179443353796608 NaN NaN 2016-01-16 02:02:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Lizzie. She's about to fist bump the l... NaN NaN NaN https://twitter.com/dog_rates/status/688179443... 10 10 Lizzie doggo
1564 688116655151435777 NaN NaN 2016-01-15 21:52:49 +0000 <a href="http://twitter.com/download/iphone" r... Please send dogs. I'm tired of seeing other st... NaN NaN NaN https://twitter.com/dog_rates/status/688116655... 10 10 None doggo
1565 688064179421470721 NaN NaN 2016-01-15 18:24:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Kilo. He's a Pouncing Brioche. Really ... NaN NaN NaN https://twitter.com/dog_rates/status/688064179... 11 10 Kilo doggo
1566 687841446767013888 NaN NaN 2016-01-15 03:39:15 +0000 <a href="http://vine.co" rel="nofollow">Vine -... 13/10 I can't stop watching this (vid by @k8ly... NaN NaN NaN https://vine.co/v/iOWwUPH1hrw 13 10 None doggo
1567 687826841265172480 NaN NaN 2016-01-15 02:41:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's a rollercoaster of emotion... NaN NaN NaN https://twitter.com/dog_rates/status/687826841... 12 10 Louis doggo
1568 687818504314159109 NaN NaN 2016-01-15 02:08:05 +0000 <a href="http://twitter.com/download/iphone" r... With great pupper comes great responsibility. ... NaN NaN NaN https://twitter.com/dog_rates/status/687818504... 12 10 None doggo
1569 687807801670897665 NaN NaN 2016-01-15 01:25:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper &amp; Maya. Trooper protects Maya... NaN NaN NaN https://twitter.com/dog_rates/status/687807801... 11 10 Trooper doggo
1570 687732144991551489 NaN NaN 2016-01-14 20:24:55 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ember. That's the q-tip she owes money... NaN NaN NaN https://vine.co/v/iOuMphL5DBY 11 10 Ember doggo
1571 687704180304273409 NaN NaN 2016-01-14 18:33:48 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Blakely. He thinks that's a hat. ... NaN NaN NaN https://twitter.com/dog_rates/status/687704180... 9 10 Blakely doggo
1572 687664829264453632 NaN NaN 2016-01-14 15:57:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Opal. He's a Belgian Dijon Poofster. Upse... NaN NaN NaN https://twitter.com/dog_rates/status/687664829... 11 10 Opal doggo
1573 687494652870668288 NaN NaN 2016-01-14 04:41:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Marq. He stole this car. 7/10 wtf Marq... NaN NaN NaN https://twitter.com/dog_rates/status/687494652... 7 10 Marq doggo
1574 687480748861947905 NaN NaN 2016-01-14 03:45:57 +0000 <a href="http://twitter.com/download/iphone" r... Another magnificent photo. 12/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/687480748... 12 10 None doggo
1575 687476254459715584 NaN NaN 2016-01-14 03:28:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Curtis. He's a fluffball. 11/10 would ... NaN NaN NaN https://twitter.com/dog_rates/status/687476254... 11 10 Curtis doggo
1576 687460506001633280 NaN NaN 2016-01-14 02:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Kramer. He's a Picasso Tortellini. Tie... NaN NaN NaN https://twitter.com/dog_rates/status/687460506... 10 10 Kramer doggo
1577 687399393394311168 NaN NaN 2016-01-13 22:22:41 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Barry. He's very fast. I hope he finds... NaN NaN NaN https://vine.co/v/iM2hLu9LU5i 10 10 Barry doggo
1578 687317306314240000 NaN NaN 2016-01-13 16:56:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyrone. He's a leaf wizard. Self-motiv... NaN NaN NaN https://twitter.com/dog_rates/status/687317306... 11 10 Tyrone doggo
1579 687312378585812992 NaN NaN 2016-01-13 16:36:55 +0000 <a href="http://twitter.com/download/iphone" r... "You got any games on your phone" 7/10 for inv... NaN NaN NaN https://twitter.com/dog_rates/status/687312378... 7 10 None doggo
1580 687127927494963200 NaN NaN 2016-01-13 04:23:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gordon. He's an asshole. 9/10 would still... NaN NaN NaN https://twitter.com/dog_rates/status/687127927... 9 10 Gordon doggo
1581 687124485711986689 NaN NaN 2016-01-13 04:10:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Samson. He's a Firecracker Häagen... NaN NaN NaN https://twitter.com/dog_rates/status/687124485... 11 10 Samson doggo
1582 687109925361856513 NaN NaN 2016-01-13 03:12:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He looks like a fun dog. Prefe... NaN NaN NaN https://twitter.com/dog_rates/status/687109925... 11 10 Baxter doggo
1583 687102708889812993 NaN NaN 2016-01-13 02:43:46 +0000 <a href="http://twitter.com/download/iphone" r... Army of water dogs here. None of them know whe... NaN NaN NaN https://twitter.com/dog_rates/status/687102708... 5 10 None doggo
1584 687096057537363968 NaN NaN 2016-01-13 02:17:20 +0000 <a href="http://twitter.com/download/iphone" r... This pupper's New Year's resolution was to bec... NaN NaN NaN https://twitter.com/dog_rates/status/687096057... 11 10 None doggo
1585 686947101016735744 NaN NaN 2016-01-12 16:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackson. He was specifically told not ... NaN NaN NaN https://twitter.com/dog_rates/status/686947101... 11 10 Jackson doggo
1586 686760001961103360 NaN NaN 2016-01-12 04:01:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper forgot how to walk. 12/10 happens ... NaN NaN NaN https://vine.co/v/iMvubwT260D 12 10 None doggo
1587 686749460672679938 NaN NaN 2016-01-12 03:20:05 +0000 <a href="http://twitter.com/download/iphone" r... Strange pup here. Easily manipulated. Rather i... NaN NaN NaN https://twitter.com/dog_rates/status/686749460... 8 10 None doggo
1588 686730991906516992 NaN NaN 2016-01-12 02:06:41 +0000 <a href="http://twitter.com/download/iphone" r... I just love this picture. 12/10 lovely af http... NaN NaN NaN https://twitter.com/dog_rates/status/686730991... 12 10 None doggo
1589 686683045143953408 NaN NaN 2016-01-11 22:56:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Mona. She's a Yarborough Splishnsplash... NaN NaN NaN https://twitter.com/dog_rates/status/686683045... 11 10 Mona doggo
1590 686618349602762752 NaN NaN 2016-01-11 18:39:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Olivia. She just saw an adult wearing ... NaN NaN NaN https://twitter.com/dog_rates/status/686618349... 11 10 Olivia doggo
1591 686606069955735556 NaN NaN 2016-01-11 17:50:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Horace. He was practicing his levitation,... NaN NaN NaN https://twitter.com/dog_rates/status/686606069... 10 10 Horace doggo
1592 686394059078897668 NaN NaN 2016-01-11 03:47:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pup's having a nightmare that he forgot t... NaN NaN NaN https://vine.co/v/iMqBebnOvav 12 10 None doggo
1593 686386521809772549 NaN NaN 2016-01-11 03:17:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Crimson. He's a Speckled Winnebag... NaN NaN NaN https://twitter.com/dog_rates/status/686386521... 11 10 Crimson doggo
1594 686377065986265092 NaN NaN 2016-01-11 02:40:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Birf. He thinks he's gone blind. 10/10 ve... NaN NaN NaN https://twitter.com/dog_rates/status/686377065... 10 10 Birf doggo
1595 686358356425093120 NaN NaN 2016-01-11 01:25:58 +0000 <a href="http://twitter.com/download/iphone" r... Heartwarming scene here. Son reuniting w fathe... NaN NaN NaN https://twitter.com/dog_rates/status/686358356... 10 10 None doggo
1596 686286779679375361 NaN NaN 2016-01-10 20:41:33 +0000 <a href="http://vine.co" rel="nofollow">Vine -... When bae calls your name from across the room.... NaN NaN NaN https://vine.co/v/iMZx6aDbExn 12 10 None doggo
1597 686050296934563840 NaN NaN 2016-01-10 05:01:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Flávio. He's a Macedonian Poppycock. 9... NaN NaN NaN https://twitter.com/dog_rates/status/686050296... 11 10 Flávio doggo
1598 686035780142297088 6.860340e+17 4.196984e+09 2016-01-10 04:04:10 +0000 <a href="http://twitter.com/download/iphone" r... Yes I do realize a rating of 4/20 would've bee... NaN NaN NaN NaN 4 20 None doggo
1599 686034024800862208 NaN NaN 2016-01-10 03:57:12 +0000 <a href="http://twitter.com/download/iphone" r... Your fav crew is back and this time they're em... NaN NaN NaN https://twitter.com/dog_rates/status/686034024... 12 10 None doggo
1600 686007916130873345 NaN NaN 2016-01-10 02:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This pupper has a magical eye. 11/10 I can't s... NaN NaN NaN https://twitter.com/dog_rates/status/686007916... 11 10 None doggo
1601 686003207160610816 NaN NaN 2016-01-10 01:54:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Hammond. He's a peculiar pup. Loves lo... NaN NaN NaN https://twitter.com/dog_rates/status/686003207... 3 10 Hammond doggo
1602 685973236358713344 NaN NaN 2016-01-09 23:55:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Lorelei. She's contemplating her exist... NaN NaN NaN https://twitter.com/dog_rates/status/685973236... 11 10 Lorelei doggo
1603 685943807276412928 NaN NaN 2016-01-09 21:58:42 +0000 <a href="http://twitter.com/download/iphone" r... This is the newly formed pupper a capella grou... NaN NaN NaN https://twitter.com/dog_rates/status/685943807... 8 10 the doggo
1604 685906723014619143 NaN NaN 2016-01-09 19:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Olive. He's stuck in a sleeve. 9/10 da... NaN NaN NaN https://twitter.com/dog_rates/status/685906723... 9 10 Olive doggo
1605 685681090388975616 6.855479e+17 4.196984e+09 2016-01-09 04:34:45 +0000 <a href="http://twitter.com/download/iphone" r... Jack deserves another round of applause. If yo... NaN NaN NaN NaN 14 10 None doggo
1606 685667379192414208 NaN NaN 2016-01-09 03:40:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Marty. He has no idea what happened he... NaN NaN NaN https://twitter.com/dog_rates/status/685667379... 9 10 Marty doggo
1607 685663452032069632 NaN NaN 2016-01-09 03:24:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brooks. He's confused by the almighty bal... NaN NaN NaN https://twitter.com/dog_rates/status/685663452... 12 10 Brooks doggo
1608 685641971164143616 NaN NaN 2016-01-09 01:59:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Otis. He just passed a cop while going... NaN NaN NaN https://twitter.com/dog_rates/status/685641971... 7 10 Otis doggo
1609 685547936038666240 NaN NaN 2016-01-08 19:45:39 +0000 <a href="http://twitter.com/download/iphone" r... Everybody needs to read this. Jack is our firs... NaN NaN NaN https://twitter.com/dog_rates/status/685547936... 14 10 None doggo
1610 685532292383666176 NaN NaN 2016-01-08 18:43:29 +0000 <a href="http://twitter.com/download/iphone" r... For the last time, WE. DO. NOT. RATE. BULBASAU... NaN NaN NaN https://twitter.com/dog_rates/status/685532292... 9 10 None doggo
1611 685325112850124800 NaN NaN 2016-01-08 05:00:14 +0000 <a href="http://twitter.com/download/iphone" r... "Tristan do not speak to me with that kind of ... NaN NaN NaN https://twitter.com/dog_rates/status/685325112... 10 10 None doggo
1612 685321586178670592 NaN NaN 2016-01-08 04:46:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Rocky. He sleeps like a psychopath. 10... NaN NaN NaN https://twitter.com/dog_rates/status/685321586... 10 10 Rocky doggo
1613 685315239903100929 NaN NaN 2016-01-08 04:21:00 +0000 <a href="http://twitter.com/download/iphone" r... I would like everyone to appreciate this pup's... NaN NaN NaN https://twitter.com/dog_rates/status/685315239... 11 10 None doggo
1614 685307451701334016 NaN NaN 2016-01-08 03:50:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Petrick. He's an Altostratus Floo... NaN NaN NaN https://twitter.com/dog_rates/status/685307451... 11 10 Petrick doggo
1615 685268753634967552 NaN NaN 2016-01-08 01:16:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Hubertson. He's a Carmel Haberdashery.... NaN NaN NaN https://twitter.com/dog_rates/status/685268753... 10 10 Hubertson doggo
1616 685198997565345792 NaN NaN 2016-01-07 20:39:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. That is his time machine. He's ... NaN NaN NaN https://twitter.com/dog_rates/status/685198997... 11 10 Alfie doggo
1617 685169283572338688 NaN NaN 2016-01-07 18:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gerbald. He just found out he's adopted. ... NaN NaN NaN https://twitter.com/dog_rates/status/685169283... 11 10 Gerbald doggo
1618 684969860808454144 6.849598e+17 4.196984e+09 2016-01-07 05:28:35 +0000 <a href="http://twitter.com/download/iphone" r... For those who claim this is a goat, u are wron... NaN NaN NaN NaN 5 10 None doggo
1619 684959798585110529 NaN NaN 2016-01-07 04:48:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a neat dog. No legs (tragi... NaN NaN NaN https://twitter.com/dog_rates/status/684959798... 5 10 Jerry doggo
1620 684940049151070208 NaN NaN 2016-01-07 03:30:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Oreo. She's a photographer and a model... NaN NaN NaN https://twitter.com/dog_rates/status/684940049... 12 10 Oreo doggo
1621 684926975086034944 NaN NaN 2016-01-07 02:38:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bruiser &amp; Charlie. They are the best ... NaN NaN NaN https://twitter.com/dog_rates/status/684926975... 11 10 Bruiser doggo
1622 684914660081053696 NaN NaN 2016-01-07 01:49:14 +0000 <a href="http://twitter.com/download/iphone" r... "Hello yes I'll just get one of each color tha... NaN NaN NaN https://twitter.com/dog_rates/status/684914660... 12 10 None doggo
1623 684902183876321280 NaN NaN 2016-01-07 00:59:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Perry. He's an Augustus Gloopster. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/684902183... 11 10 Perry doggo
1624 684880619965411328 NaN NaN 2016-01-06 23:33:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a basking dino pupper. Looks powe... NaN NaN NaN https://twitter.com/dog_rates/status/684880619... 5 10 None doggo
1625 684830982659280897 NaN NaN 2016-01-06 20:16:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This little fella really hates stairs. Prefers... NaN NaN NaN https://vine.co/v/eEZXZI1rqxX 13 10 None doggo
1626 684800227459624960 NaN NaN 2016-01-06 18:14:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Theodore. He's dapper as hell. Probably o... NaN NaN NaN https://twitter.com/dog_rates/status/684800227... 11 10 Theodore doggo
1627 684594889858887680 NaN NaN 2016-01-06 04:38:35 +0000 <a href="http://twitter.com/download/iphone" r... "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ... NaN NaN NaN https://twitter.com/dog_rates/status/684594889... 10 10 None doggo
1628 684588130326986752 NaN NaN 2016-01-06 04:11:43 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper just got his first kiss. 12/10 he'... NaN NaN NaN https://vine.co/v/ihWIxntjtO7 12 10 None doggo
1629 684567543613382656 NaN NaN 2016-01-06 02:49:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Bobby. He doesn't give a damn about pe... NaN NaN NaN https://twitter.com/dog_rates/status/684567543... 4 10 Bobby doggo
1630 684538444857667585 6.844811e+17 4.196984e+09 2016-01-06 00:54:18 +0000 <a href="http://twitter.com/download/iphone" r... After watching this video, we've determined th... NaN NaN NaN https://twitter.com/dog_rates/status/684538444... 12 10 None doggo
1631 684481074559381504 NaN NaN 2016-01-05 21:06:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Pippa. She's an Elfin High Feta. Compact ... NaN NaN NaN https://twitter.com/dog_rates/status/684481074... 10 10 Pippa doggo
1632 684460069371654144 NaN NaN 2016-01-05 19:42:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He's a Western Sagittarius Dookm... NaN NaN NaN https://twitter.com/dog_rates/status/684460069... 10 10 Jeph doggo
1633 684241637099323392 NaN NaN 2016-01-05 05:14:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Obi. He got camera shy. 12/10 https://... NaN NaN NaN https://twitter.com/dog_rates/status/684241637... 12 10 Obi doggo
1634 684225744407494656 6.842229e+17 4.196984e+09 2016-01-05 04:11:44 +0000 <a href="http://twitter.com/download/iphone" r... Two sneaky puppers were not initially seen, mo... NaN NaN NaN https://twitter.com/dog_rates/status/684225744... 143 130 None doggo
1635 684222868335505415 NaN NaN 2016-01-05 04:00:18 +0000 <a href="http://twitter.com/download/iphone" r... Someone help the girl is being mugged. Several... NaN NaN NaN https://twitter.com/dog_rates/status/684222868... 121 110 None doggo
1636 684200372118904832 NaN NaN 2016-01-05 02:30:55 +0000 <a href="http://twitter.com/download/iphone" r... Gang of fearless hoofed puppers here. Straight... NaN NaN NaN https://twitter.com/dog_rates/status/684200372... 6 10 None doggo
1637 684195085588783105 NaN NaN 2016-01-05 02:09:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tino. He really likes corndogs. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/684195085... 9 10 Tino doggo
1638 684188786104872960 NaN NaN 2016-01-05 01:44:52 +0000 <a href="http://twitter.com/download/iphone" r... "Yo Boomer I'm taking a selfie, grab your stic... NaN NaN NaN https://twitter.com/dog_rates/status/684188786... 10 10 None doggo
1639 684177701129875456 NaN NaN 2016-01-05 01:00:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Kulet. She's very proud of the flower ... NaN NaN NaN https://twitter.com/dog_rates/status/684177701... 10 10 Kulet doggo
1640 684147889187209216 NaN NaN 2016-01-04 23:02:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Sweets the English Bulldog. Waves back... NaN NaN NaN https://vine.co/v/ib2nTOEuuOI 12 10 Sweets doggo
1641 684122891630342144 NaN NaN 2016-01-04 21:23:02 +0000 <a href="http://twitter.com/download/iphone" r... Heartwarming scene of two pups that want nothi... NaN NaN NaN https://twitter.com/dog_rates/status/684122891... 11 10 None doggo
1642 684097758874210310 NaN NaN 2016-01-04 19:43:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lupe. This is how she sleeps. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/684097758... 10 10 Lupe doggo
1643 683857920510050305 NaN NaN 2016-01-04 03:50:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sadie. She fell asleep on the beach and h... NaN NaN NaN https://twitter.com/dog_rates/status/683857920... 10 10 Sadie doggo
1644 683852578183077888 NaN NaN 2016-01-04 03:28:54 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Tiger. He's a penbroke (little do... NaN NaN NaN https://twitter.com/dog_rates/status/683852578... 10 10 Tiger doggo
1645 683849932751646720 NaN NaN 2016-01-04 03:18:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He's not the brightest dog. Ne... NaN NaN NaN https://twitter.com/dog_rates/status/683849932... 5 10 Jiminy doggo
1646 683834909291606017 NaN NaN 2016-01-04 02:18:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a faulty pupper. Might need to rep... NaN NaN NaN https://twitter.com/dog_rates/status/683834909... 9 10 None doggo
1647 683828599284170753 NaN NaN 2016-01-04 01:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Breathtaking pupper here. Should be on the cov... NaN NaN NaN https://twitter.com/dog_rates/status/683828599... 12 10 None doggo
1648 683773439333797890 NaN NaN 2016-01-03 22:14:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's gaining strength. Currentl... NaN NaN NaN https://twitter.com/dog_rates/status/683773439... 9 10 Buddy doggo
1649 683742671509258241 NaN NaN 2016-01-03 20:12:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sebastian. He's a womanizer. Romantic af.... NaN NaN NaN https://twitter.com/dog_rates/status/683742671... 11 10 Sebastian doggo
1650 683515932363329536 NaN NaN 2016-01-03 05:11:12 +0000 <a href="http://vine.co" rel="nofollow">Vine -... HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT... NaN NaN NaN https://vine.co/v/ibvnzrauFuV 11 10 None doggo
1651 683498322573824003 NaN NaN 2016-01-03 04:01:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Griffin. He's desperate for both a phy... NaN NaN NaN https://twitter.com/dog_rates/status/683498322... 11 10 Griffin doggo
1652 683481228088049664 NaN NaN 2016-01-03 02:53:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Banjo. He's a Peppercorn Shoop Da Whoop. ... NaN NaN NaN https://twitter.com/dog_rates/status/683481228... 11 10 Banjo doggo
1653 683462770029932544 NaN NaN 2016-01-03 01:39:57 +0000 <a href="http://twitter.com/download/iphone" r... "Hello forest pupper I am house pupper welcome... NaN NaN NaN https://twitter.com/dog_rates/status/683462770... 8 10 None doggo
1654 683449695444799489 NaN NaN 2016-01-03 00:47:59 +0000 <a href="http://twitter.com/download/iphone" r... I just want to be friends with this dog. Appea... NaN NaN NaN https://twitter.com/dog_rates/status/683449695... 10 10 None doggo
1655 683391852557561860 NaN NaN 2016-01-02 20:58:09 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jack (pronounced "Kevin"). He's a... NaN NaN NaN https://twitter.com/dog_rates/status/683391852... 11 10 Jack doggo
1656 683357973142474752 NaN NaN 2016-01-02 18:43:31 +0000 <a href="http://twitter.com/download/iphone" r... "Have a seat, son. There are some things we ne... NaN NaN NaN https://twitter.com/dog_rates/status/683357973... 10 10 None doggo
1657 683142553609318400 NaN NaN 2016-01-02 04:27:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brandy. She's a member of the Bloods. Men... NaN NaN NaN https://twitter.com/dog_rates/status/683142553... 9 10 Brandy doggo
1658 683111407806746624 NaN NaN 2016-01-02 02:23:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Larry. He thought the New Year's parti... NaN NaN NaN https://twitter.com/dog_rates/status/683111407... 10 10 Larry doggo
1659 683098815881154561 NaN NaN 2016-01-02 01:33:43 +0000 <a href="http://twitter.com/download/iphone" r... aahhhhkslaldhwnxmzbbs 12/10 for being da smoos... NaN NaN NaN https://twitter.com/dog_rates/status/683098815... 12 10 None doggo
1660 683078886620553216 NaN NaN 2016-01-02 00:14:32 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a nifty leaping pupper. Feet look ... NaN NaN NaN https://twitter.com/dog_rates/status/683078886... 9 10 None doggo
1661 683030066213818368 NaN NaN 2016-01-01 21:00:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Lulu. She's contemplating all her unre... NaN NaN NaN https://twitter.com/dog_rates/status/683030066... 10 10 Lulu doggo
1662 682962037429899265 NaN NaN 2016-01-01 16:30:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Darrel. He just robbed a 7/11 and is i... NaN NaN NaN https://twitter.com/dog_rates/status/682962037... 7 11 Darrel doggo
1663 682808988178739200 6.827884e+17 4.196984e+09 2016-01-01 06:22:03 +0000 <a href="http://twitter.com/download/iphone" r... I'm aware that I could've said 20/16, but here... NaN NaN NaN NaN 20 16 None doggo
1664 682788441537560576 NaN NaN 2016-01-01 05:00:24 +0000 <a href="http://twitter.com/download/iphone" r... Happy New Year from your fav holiday squad! 🎉 ... NaN NaN NaN https://twitter.com/dog_rates/status/682788441... 12 10 None doggo
1665 682750546109968385 NaN NaN 2016-01-01 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... Meet Taco. He's a speckled Garnier Fructis. Lo... NaN NaN NaN https://twitter.com/dog_rates/status/682750546... 9 10 Taco doggo
1666 682697186228989953 NaN NaN 2015-12-31 22:57:47 +0000 <a href="http://twitter.com/download/iphone" r... NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/682697186... 12 10 None doggo
1667 682662431982772225 NaN NaN 2015-12-31 20:39:41 +0000 <a href="http://twitter.com/download/iphone" r... Meet Joey and Izzy. Joey only has one ear that... NaN NaN NaN https://twitter.com/dog_rates/status/682662431... 11 10 Joey doggo
1668 682638830361513985 NaN NaN 2015-12-31 19:05:54 +0000 <a href="http://twitter.com/download/iphone" r... I have no words. Just a magnificent pup. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/682638830... 12 10 None doggo
1669 682429480204398592 NaN NaN 2015-12-31 05:14:01 +0000 <a href="http://twitter.com/download/iphone" r... I know we joke around on here, but this is get... NaN NaN NaN https://twitter.com/dog_rates/status/682429480... 8 10 None doggo
1670 682406705142087680 NaN NaN 2015-12-31 03:43:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Patrick. He's a bigass pupper. 7/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/682406705... 7 10 Patrick doggo
1671 682393905736888321 NaN NaN 2015-12-31 02:52:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kreg. He's riding an invisible jet ski... NaN NaN NaN https://twitter.com/dog_rates/status/682393905... 11 10 Kreg doggo
1672 682389078323662849 NaN NaN 2015-12-31 02:33:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brody. He's a Downton Abbey Falsetto. Add... NaN NaN NaN https://twitter.com/dog_rates/status/682389078... 9 10 Brody doggo
1673 682303737705140231 NaN NaN 2015-12-30 20:54:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Todo. He's screaming because he doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/682303737... 9 10 Todo doggo
1674 682259524040966145 NaN NaN 2015-12-30 17:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's an Iglesias Hufflepoof. Quite t... NaN NaN NaN https://twitter.com/dog_rates/status/682259524... 9 10 Jax doggo
1675 682242692827447297 NaN NaN 2015-12-30 16:51:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Samson. He patrols his waters on the b... NaN NaN NaN https://twitter.com/dog_rates/status/682242692... 11 10 Samson doggo
1676 682088079302213632 NaN NaN 2015-12-30 06:37:25 +0000 <a href="http://vine.co" rel="nofollow">Vine -... I'm not sure what this dog is doing but it's p... NaN NaN NaN https://vine.co/v/iqMjlxULzbn 12 10 None doggo
1677 682059653698686977 NaN NaN 2015-12-30 04:44:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Tess. Her main passions are shelves an... NaN NaN NaN https://twitter.com/dog_rates/status/682059653... 11 10 Tess doggo
1678 682047327939461121 NaN NaN 2015-12-30 03:55:29 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate bears but this one seem... NaN NaN NaN https://twitter.com/dog_rates/status/682047327... 10 10 None doggo
1679 682032003584274432 NaN NaN 2015-12-30 02:54:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Ulysses. He likes holding hands and hi... NaN NaN NaN https://twitter.com/dog_rates/status/682032003... 11 10 Ulysses doggo
1680 682003177596559360 NaN NaN 2015-12-30 01:00:03 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Wrinkly as hell. Weird segmen... NaN NaN NaN https://twitter.com/dog_rates/status/682003177... 5 10 None doggo
1681 681981167097122816 NaN NaN 2015-12-29 23:32:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He's a Trinidad Poliwhirl. Fa... NaN NaN NaN https://twitter.com/dog_rates/status/681981167... 12 10 Jimothy doggo
1682 681891461017812993 NaN NaN 2015-12-29 17:36:07 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Charlie. He's scholarly af. Quite... NaN NaN NaN https://twitter.com/dog_rates/status/681891461... 10 10 Charlie doggo
1683 681694085539872773 NaN NaN 2015-12-29 04:31:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's a Benedoop Cumbersnatch. Seem... NaN NaN NaN https://twitter.com/dog_rates/status/681694085... 11 10 Bo doggo
1684 681679526984871937 NaN NaN 2015-12-29 03:33:58 +0000 <a href="http://twitter.com/download/iphone" r... Can you spot Toby the guilty pupper? 7/10 woul... NaN NaN NaN https://twitter.com/dog_rates/status/681679526... 7 10 None doggo
1685 681654059175129088 NaN NaN 2015-12-29 01:52:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Toffee. He's a happy pupper. Appears d... NaN NaN NaN https://twitter.com/dog_rates/status/681654059... 12 10 Toffee doggo
1686 681610798867845120 NaN NaN 2015-12-28 23:00:52 +0000 <a href="http://twitter.com/download/iphone" r... *collapses* 12/10 https://t.co/C7M8mnzHIK NaN NaN NaN https://twitter.com/dog_rates/status/681610798... 12 10 None doggo
1687 681579835668455424 NaN NaN 2015-12-28 20:57:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Apollo. He thought you weren't coming ... NaN NaN NaN https://twitter.com/dog_rates/status/681579835... 8 10 Apollo doggo
1688 681523177663676416 NaN NaN 2015-12-28 17:12:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Carly. She's actually 2 dogs fused tog... NaN NaN NaN https://twitter.com/dog_rates/status/681523177... 12 10 Carly doggo
1689 681340665377193984 6.813394e+17 4.196984e+09 2015-12-28 05:07:27 +0000 <a href="http://twitter.com/download/iphone" r... I've been told there's a slight possibility he... NaN NaN NaN NaN 5 10 None doggo
1690 681339448655802368 NaN NaN 2015-12-28 05:02:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Asher. He's not wearing a seatbelt or ... NaN NaN NaN https://twitter.com/dog_rates/status/681339448... 9 10 Asher doggo
1691 681320187870711809 NaN NaN 2015-12-28 03:46:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Glacier. He's a very happy pup. Loves ... NaN NaN NaN https://twitter.com/dog_rates/status/681320187... 11 10 Glacier doggo
1692 681302363064414209 NaN NaN 2015-12-28 02:35:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Chuck. He's a neat dog. Very flexible.... NaN NaN NaN https://twitter.com/dog_rates/status/681302363... 3 10 Chuck doggo
1693 681297372102656000 NaN NaN 2015-12-28 02:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is actually a lion. We only rate dogs. Fo... NaN NaN NaN https://twitter.com/dog_rates/status/681297372... 12 10 actually doggo
1694 681281657291280384 NaN NaN 2015-12-28 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sarge. His parents signed him up for danc... NaN NaN NaN https://twitter.com/dog_rates/status/681281657... 11 10 Sarge doggo
1695 681261549936340994 NaN NaN 2015-12-27 23:53:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Panda. He's a Quackadilly Shooste... NaN NaN NaN https://twitter.com/dog_rates/status/681261549... 9 10 Panda doggo
1696 681242418453299201 NaN NaN 2015-12-27 22:37:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Champ. He's being sacrificed to the Az... NaN NaN NaN https://twitter.com/dog_rates/status/681242418... 10 10 Champ doggo
1697 681231109724700672 NaN NaN 2015-12-27 21:52:07 +0000 <a href="http://twitter.com/download/iphone" r... I just love this pic. 11/10 this pupper is goi... NaN NaN NaN https://twitter.com/dog_rates/status/681231109... 11 10 None doggo
1698 681193455364796417 NaN NaN 2015-12-27 19:22:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. He's astronomically fluffy. I w... NaN NaN NaN https://twitter.com/dog_rates/status/681193455... 11 10 Aspen doggo
1699 680970795137544192 NaN NaN 2015-12-27 04:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I thought I made this very clear. We only rate... NaN NaN NaN https://twitter.com/dog_rates/status/680970795... 9 10 None doggo
1700 680959110691590145 NaN NaN 2015-12-27 03:51:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Ozzie. He was doing fine until he lost... NaN NaN NaN https://twitter.com/dog_rates/status/680959110... 9 10 Ozzie doggo
1701 680940246314430465 NaN NaN 2015-12-27 02:36:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Alice. She's an idiot. 4/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/680940246... 4 10 Alice doggo
1702 680934982542561280 NaN NaN 2015-12-27 02:15:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie. She's a Tortellini Sidewin... NaN NaN NaN https://twitter.com/dog_rates/status/680934982... 10 10 Sadie doggo
1703 680913438424612864 NaN NaN 2015-12-27 00:49:49 +0000 <a href="http://twitter.com/download/iphone" r... Meet Griswold. He's dapper as hell. Already pu... NaN NaN NaN https://twitter.com/dog_rates/status/680913438... 11 10 Griswold doggo
1704 680889648562991104 NaN NaN 2015-12-26 23:15:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cheesy. It's her birthday. She's patie... NaN NaN NaN https://twitter.com/dog_rates/status/680889648... 9 10 Cheesy doggo
1705 680836378243002368 NaN NaN 2015-12-26 19:43:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Ellie. She's secretly ferocious. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/680836378... 12 10 Ellie doggo
1706 680805554198020098 NaN NaN 2015-12-26 17:41:07 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This guy's dog broke. So sad. 9/10 would still... NaN NaN NaN https://vine.co/v/iAP0Ugzi2PO 9 10 None doggo
1707 680801747103793152 NaN NaN 2015-12-26 17:25:59 +0000 <a href="http://twitter.com/download/iphone" r... Great picture here. Dog on the right panicked ... NaN NaN NaN https://twitter.com/dog_rates/status/680801747... 10 10 None doggo
1708 680798457301471234 NaN NaN 2015-12-26 17:12:55 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Moofasa. He must be a powerful do... NaN NaN NaN https://twitter.com/dog_rates/status/680798457... 6 10 Moofasa doggo
1709 680609293079592961 NaN NaN 2015-12-26 04:41:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. That is his chair. He loves his... NaN NaN NaN https://twitter.com/dog_rates/status/680609293... 9 10 Brody doggo
1710 680583894916304897 NaN NaN 2015-12-26 03:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. Her tennis ball slowly rolled d... NaN NaN NaN https://twitter.com/dog_rates/status/680583894... 8 10 Penny doggo
1711 680497766108381184 NaN NaN 2015-12-25 21:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Percy. He's a Latvian Yuletide Heineken. ... NaN NaN NaN https://twitter.com/dog_rates/status/680497766... 12 10 Percy doggo
1712 680494726643068929 NaN NaN 2015-12-25 21:06:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have uncovered an entire battalion of ... NaN NaN NaN https://twitter.com/dog_rates/status/680494726... 26 10 None doggo
1713 680473011644985345 NaN NaN 2015-12-25 19:39:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Hector. He thinks he's a hammer. Silly... NaN NaN NaN https://twitter.com/dog_rates/status/680473011... 10 10 Hector doggo
1714 680440374763077632 NaN NaN 2015-12-25 17:30:01 +0000 <a href="http://twitter.com/download/iphone" r... Merry Christmas. My gift to you is this tiny u... NaN NaN NaN https://twitter.com/dog_rates/status/680440374... 11 10 None doggo
1715 680221482581123072 NaN NaN 2015-12-25 03:00:14 +0000 <a href="http://twitter.com/download/iphone" r... This is CeCe. She's patiently waiting for Sant... NaN NaN NaN https://twitter.com/dog_rates/status/680221482... 10 10 CeCe doggo
1716 680206703334408192 NaN NaN 2015-12-25 02:01:30 +0000 <a href="http://twitter.com/download/iphone" r... I hope everyone enjoys this picture as much as... NaN NaN NaN https://twitter.com/dog_rates/status/680206703... 12 10 Toby doggo
1717 680191257256136705 NaN NaN 2015-12-25 01:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Here's a sleepy Christmas pupper 11/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/680191257... 11 10 None doggo
1718 680176173301628928 NaN NaN 2015-12-25 00:00:11 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is patiently waiting to scare the ... NaN NaN NaN https://twitter.com/dog_rates/status/680176173... 10 10 None doggo
1719 680161097740095489 NaN NaN 2015-12-24 23:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Goliath. He's an example of irony. Head i... NaN NaN NaN https://twitter.com/dog_rates/status/680161097... 12 10 Goliath doggo
1720 680145970311643136 NaN NaN 2015-12-24 22:00:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kawhi. He was doing fine until hi... NaN NaN NaN https://twitter.com/dog_rates/status/680145970... 10 10 Kawhi doggo
1721 680130881361686529 NaN NaN 2015-12-24 21:00:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Reggie. His Santa hat is a little big.... NaN NaN NaN https://twitter.com/dog_rates/status/680130881... 10 10 Reggie doggo
1722 680115823365742593 NaN NaN 2015-12-24 20:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Ozzy. He woke up 2 minutes before he h... NaN NaN NaN https://twitter.com/dog_rates/status/680115823... 9 10 Ozzy doggo
1723 680100725817409536 NaN NaN 2015-12-24 19:00:23 +0000 <a href="https://about.twitter.com/products/tw... This pupper is not coming inside until she cat... NaN NaN NaN https://twitter.com/dog_rates/status/680100725... 11 10 None doggo
1724 680085611152338944 NaN NaN 2015-12-24 18:00:19 +0000 <a href="https://about.twitter.com/products/tw... This is by far the most coordinated series of ... NaN NaN NaN https://twitter.com/dog_rates/status/680085611... 12 10 by doggo
1725 680070545539371008 NaN NaN 2015-12-24 17:00:27 +0000 <a href="https://about.twitter.com/products/tw... Say hello to Emmie. She's trapped in an orname... NaN NaN NaN https://twitter.com/dog_rates/status/680070545... 9 10 Emmie doggo
1726 680055455951884288 NaN NaN 2015-12-24 16:00:30 +0000 <a href="https://about.twitter.com/products/tw... Meet Sammy. At first I was like "that's a snow... NaN NaN NaN https://twitter.com/dog_rates/status/680055455... 10 10 Sammy doggo
1727 679877062409191424 NaN NaN 2015-12-24 04:11:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She's a bacon frise. Total babe... NaN NaN NaN https://twitter.com/dog_rates/status/679877062... 5 10 Penelope doggo
1728 679872969355714560 NaN NaN 2015-12-24 03:55:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rocco. He's in a very intense game of ... NaN NaN NaN https://vine.co/v/iAAxTbj1UAM 10 10 Rocco doggo
1729 679862121895714818 NaN NaN 2015-12-24 03:12:15 +0000 <a href="http://twitter.com/download/iphone" r... "Dammit hooman I'm jus trynna lik the fler" 11... NaN NaN NaN https://twitter.com/dog_rates/status/679862121... 11 10 None doggo
1730 679854723806179328 NaN NaN 2015-12-24 02:42:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. He's a rare pup. Covered in Fro... NaN NaN NaN https://twitter.com/dog_rates/status/679854723... 7 10 Bruce doggo
1731 679844490799091713 NaN NaN 2015-12-24 02:02:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Willie. He's floating away and needs y... NaN NaN NaN https://twitter.com/dog_rates/status/679844490... 10 10 Willie doggo
1732 679828447187857408 NaN NaN 2015-12-24 00:58:27 +0000 <a href="http://twitter.com/download/iphone" r... Everybody look at this beautiful pupper 13/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/679828447... 13 10 None doggo
1733 679777920601223168 NaN NaN 2015-12-23 21:37:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Rinna. She's melting. 10/10 get inside... NaN NaN NaN https://twitter.com/dog_rates/status/679777920... 10 10 Rinna doggo
1734 679736210798047232 NaN NaN 2015-12-23 18:51:56 +0000 <a href="http://twitter.com/download/iphone" r... This pup's name is Sabertooth (parents must be... NaN NaN NaN https://twitter.com/dog_rates/status/679736210... 9 10 None doggo
1735 679729593985699840 NaN NaN 2015-12-23 18:25:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Hunter. He was playing with his ball m... NaN NaN NaN https://twitter.com/dog_rates/status/679729593... 8 10 Hunter doggo
1736 679722016581222400 NaN NaN 2015-12-23 17:55:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Mike. He is a Jordanian Frito Pilates.... NaN NaN NaN https://twitter.com/dog_rates/status/679722016... 8 10 Mike doggo
1737 679530280114372609 NaN NaN 2015-12-23 05:13:38 +0000 <a href="http://twitter.com/download/iphone" r... Guys this really needs to stop. We've been ove... NaN NaN NaN https://twitter.com/dog_rates/status/679530280... 7 10 a doggo
1738 679527802031484928 NaN NaN 2015-12-23 05:03:47 +0000 <a href="http://twitter.com/download/iphone" r... This little pupper just arrived. 11/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/679527802... 11 10 None doggo
1739 679511351870550016 NaN NaN 2015-12-23 03:58:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to William. He makes fun of others b... NaN NaN NaN https://twitter.com/dog_rates/status/679511351... 7 10 William doggo
1740 679503373272485890 NaN NaN 2015-12-23 03:26:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Dwight. He's a pointy pupper. Very doc... NaN NaN NaN https://twitter.com/dog_rates/status/679503373... 8 10 Dwight doggo
1741 679475951516934144 NaN NaN 2015-12-23 01:37:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Evy. She doesn't want to be a Koala. 9... NaN NaN NaN https://twitter.com/dog_rates/status/679475951... 9 10 Evy doggo
1742 679462823135686656 NaN NaN 2015-12-23 00:45:35 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hurley. He's the curly one. He hugs every... NaN NaN NaN https://twitter.com/dog_rates/status/679462823... 11 10 Hurley doggo
1743 679405845277462528 NaN NaN 2015-12-22 20:59:10 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Crazy unseen footage from Jurassic Park. 10/10... NaN NaN NaN https://vine.co/v/iKVFEigMLxP 10 10 None doggo
1744 679158373988876288 NaN NaN 2015-12-22 04:35:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rubio. He has too much skin. 11/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/679158373... 11 10 Rubio doggo
1745 679148763231985668 NaN NaN 2015-12-22 03:57:37 +0000 <a href="http://twitter.com/download/iphone" r... I know everyone's excited for Christmas but th... NaN NaN NaN https://twitter.com/dog_rates/status/679148763... 8 10 None doggo
1746 679132435750195208 NaN NaN 2015-12-22 02:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's a river dancer. His friend... NaN NaN NaN https://twitter.com/dog_rates/status/679132435... 10 10 Louis doggo
1747 679111216690831360 NaN NaN 2015-12-22 01:28:25 +0000 <a href="http://twitter.com/download/iphone" r... This is officially the greatest yawn of all ti... NaN NaN NaN https://twitter.com/dog_rates/status/679111216... 12 10 officially doggo
1748 679062614270468097 NaN NaN 2015-12-21 22:15:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Chompsky. He lives up to his name. 11/... NaN NaN NaN https://twitter.com/dog_rates/status/679062614... 11 10 Chompsky doggo
1749 679047485189439488 NaN NaN 2015-12-21 21:15:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog doesn't know how to stairs. Quite tra... NaN NaN NaN https://twitter.com/dog_rates/status/679047485... 9 10 None doggo
1750 679001094530465792 NaN NaN 2015-12-21 18:10:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rascal. He's paddling an imaginary can... NaN NaN NaN https://vine.co/v/iKIwAzEatd6 11 10 Rascal doggo
1751 678991772295516161 NaN NaN 2015-12-21 17:33:48 +0000 <a href="http://twitter.com/download/iphone" r... If your Monday isn't going so well just take a... NaN NaN NaN https://twitter.com/dog_rates/status/678991772... 12 10 None doggo
1752 678969228704284672 NaN NaN 2015-12-21 16:04:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. She's a Metamorphic Chartreuse. Pla... NaN NaN NaN https://twitter.com/dog_rates/status/678969228... 11 10 Lola doggo
1753 678800283649069056 NaN NaN 2015-12-21 04:52:53 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with some mean tan lines. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/678800283... 12 10 None doggo
1754 678798276842360832 NaN NaN 2015-12-21 04:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She fucking hates trees. 7/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678798276... 7 10 Linda doggo
1755 678774928607469569 NaN NaN 2015-12-21 03:12:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tug. He's not required to wear the con... NaN NaN NaN https://twitter.com/dog_rates/status/678774928... 11 10 Tug doggo
1756 678767140346941444 NaN NaN 2015-12-21 02:41:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She makes awful decisions. 8/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678767140... 8 10 Mia doggo
1757 678764513869611008 NaN NaN 2015-12-21 02:30:45 +0000 <a href="http://twitter.com/download/iphone" r... Meet Wilson. He got caught humping the futon. ... NaN NaN NaN https://twitter.com/dog_rates/status/678764513... 10 10 Wilson doggo
1758 678755239630127104 NaN NaN 2015-12-21 01:53:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Dash. He didn't think the water would ... NaN NaN NaN https://twitter.com/dog_rates/status/678755239... 10 10 Dash doggo
1759 678740035362037760 NaN NaN 2015-12-21 00:53:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tango. He's a large dog. Doesn't care muc... NaN NaN NaN https://twitter.com/dog_rates/status/678740035... 6 10 Tango doggo
1760 678708137298427904 NaN NaN 2015-12-20 22:46:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a wild field pupper. Lo... NaN NaN NaN https://vine.co/v/eQjxxYaQ60K 10 10 None doggo
1761 678675843183484930 NaN NaN 2015-12-20 20:38:24 +0000 <a href="http://twitter.com/download/iphone" r... Exotic pup here. Tail long af. Throat looks sw... NaN NaN NaN https://twitter.com/dog_rates/status/678675843... 2 10 None doggo
1762 678643457146150913 NaN NaN 2015-12-20 18:29:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizz. He just arrived. Couldn't wait unt... NaN NaN NaN https://twitter.com/dog_rates/status/678643457... 10 10 Grizz doggo
1763 678446151570427904 NaN NaN 2015-12-20 05:25:42 +0000 <a href="http://twitter.com/download/iphone" r... Touching scene here. Really stirs up the emoti... NaN NaN NaN https://twitter.com/dog_rates/status/678446151... 10 10 None doggo
1764 678424312106393600 NaN NaN 2015-12-20 03:58:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Crystal. She's a shitty fireman. No se... NaN NaN NaN https://twitter.com/dog_rates/status/678424312... 2 10 Crystal doggo
1765 678410210315247616 NaN NaN 2015-12-20 03:02:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jerome. He can shoot french fries... NaN NaN NaN https://twitter.com/dog_rates/status/678410210... 10 10 Jerome doggo
1766 678399652199309312 NaN NaN 2015-12-20 02:20:55 +0000 <a href="http://twitter.com/download/iphone" r... This made my day. 12/10 please enjoy https://t... NaN NaN NaN https://twitter.com/dog_rates/status/678399652... 12 10 None doggo
1767 678396796259975168 NaN NaN 2015-12-20 02:09:34 +0000 <a href="http://twitter.com/download/iphone" r... These little fellas have opposite facial expre... NaN NaN NaN https://twitter.com/dog_rates/status/678396796... 12 10 None doggo
1768 678389028614488064 NaN NaN 2015-12-20 01:38:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She just learned that her final... NaN NaN NaN https://twitter.com/dog_rates/status/678389028... 11 10 Bella doggo
1769 678380236862578688 NaN NaN 2015-12-20 01:03:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Crumpet. He underestimated the snow. Q... NaN NaN NaN https://twitter.com/dog_rates/status/678380236... 10 10 Crumpet doggo
1770 678341075375947776 NaN NaN 2015-12-19 22:28:09 +0000 <a href="http://twitter.com/download/iphone" r... This pupper likes tape. 12/10 https://t.co/cSp... NaN NaN NaN https://twitter.com/dog_rates/status/678341075... 12 10 None doggo
1771 678334497360859136 NaN NaN 2015-12-19 22:02:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She has a snazzy bow tie and a ... NaN NaN NaN https://twitter.com/dog_rates/status/678334497... 10 10 Rosie doggo
1772 678278586130948096 NaN NaN 2015-12-19 18:19:51 +0000 <a href="http://twitter.com/download/iphone" r... Another spooky pupper here. Most definitely fl... NaN NaN NaN https://twitter.com/dog_rates/status/678278586... 10 10 None doggo
1773 678255464182861824 NaN NaN 2015-12-19 16:47:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Jessifer. She is a Bismoth Teriyaki. F... NaN NaN NaN https://twitter.com/dog_rates/status/678255464... 9 10 Jessifer doggo
1774 678023323247357953 6.780211e+17 4.196984e+09 2015-12-19 01:25:31 +0000 <a href="http://twitter.com/download/iphone" r... After getting lost in Reese's eyes for several... NaN NaN NaN NaN 13 10 None doggo
1775 678021115718029313 NaN NaN 2015-12-19 01:16:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Reese. He likes holding hands. 12/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678021115... 12 10 Reese doggo
1776 677961670166224897 NaN NaN 2015-12-18 21:20:32 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Izzy. She's showing off the dance move... NaN NaN NaN https://vine.co/v/iKuMDuYV0aZ 11 10 Izzy doggo
1777 677918531514703872 NaN NaN 2015-12-18 18:29:07 +0000 <a href="http://twitter.com/download/iphone" r... "Everything looks pretty good in there. Make s... NaN NaN NaN https://twitter.com/dog_rates/status/677918531... 10 10 None doggo
1778 677895101218201600 NaN NaN 2015-12-18 16:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Guys this was terrifying. Really spooked me up... NaN NaN NaN https://twitter.com/dog_rates/status/677895101... 9 10 None doggo
1779 677716515794329600 NaN NaN 2015-12-18 05:06:23 +0000 <a href="http://twitter.com/download/iphone" r... IT'S PUPPERGEDDON. Total of 144/120 ...I think... NaN NaN NaN https://twitter.com/dog_rates/status/677716515... 144 120 None doggo
1780 677700003327029250 NaN NaN 2015-12-18 04:00:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralph. He's an interpretive dancer. 10... NaN NaN NaN https://twitter.com/dog_rates/status/677700003... 10 10 Ralph doggo
1781 677698403548192770 NaN NaN 2015-12-18 03:54:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie. She got her holidays confused. ... NaN NaN NaN https://twitter.com/dog_rates/status/677698403... 9 10 Sadie doggo
1782 677687604918272002 NaN NaN 2015-12-18 03:11:30 +0000 <a href="http://twitter.com/download/iphone" r... This was Cindy's face when she heard Susan for... NaN NaN NaN https://twitter.com/dog_rates/status/677687604... 11 10 None doggo
1783 677673981332312066 NaN NaN 2015-12-18 02:17:22 +0000 <a href="http://twitter.com/download/iphone" r... Endangered triangular pup here. Could be a wiz... NaN NaN NaN https://twitter.com/dog_rates/status/677673981... 9 10 None doggo
1784 677662372920729601 NaN NaN 2015-12-18 01:31:14 +0000 <a href="http://twitter.com/download/iphone" r... In honor of the new Star Wars movie. Here's Yo... NaN NaN NaN https://twitter.com/dog_rates/status/677662372... 12 10 None doggo
1785 677644091929329666 NaN NaN 2015-12-18 00:18:36 +0000 <a href="http://twitter.com/download/iphone" r... This is a dog swinging. I really enjoyed it so... NaN NaN NaN https://twitter.com/dog_rates/status/677644091... 11 10 a doggo
1786 677573743309385728 NaN NaN 2015-12-17 19:39:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandy. He's sexually confused. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/677573743... 10 10 Sandy doggo
1787 677565715327688705 NaN NaN 2015-12-17 19:07:09 +0000 <a href="http://twitter.com/download/iphone" r... Contortionist pup here. Inside pentagram. Clea... NaN NaN NaN https://twitter.com/dog_rates/status/677565715... 6 10 None doggo
1788 677557565589463040 NaN NaN 2015-12-17 18:34:46 +0000 <a href="http://twitter.com/download/iphone" r... Reckless pupper here. Not even looking at road... NaN NaN NaN https://twitter.com/dog_rates/status/677557565... 10 10 None doggo
1789 677547928504967168 NaN NaN 2015-12-17 17:56:29 +0000 <a href="http://twitter.com/download/iphone" r... Not much to say here. I just think everyone ne... NaN NaN NaN https://twitter.com/dog_rates/status/677547928... 12 10 None doggo
1790 677530072887205888 NaN NaN 2015-12-17 16:45:31 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Axel. He's a Black Chevy Pinot on... NaN NaN NaN https://twitter.com/dog_rates/status/677530072... 9 10 Axel doggo
1791 677335745548390400 NaN NaN 2015-12-17 03:53:20 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Downright inspiring 12/10 https://t.co/vSLtYBWHcQ NaN NaN NaN https://vine.co/v/hbLbH77Ar67 12 10 None doggo
1792 677334615166730240 NaN NaN 2015-12-17 03:48:51 +0000 <a href="http://twitter.com/download/iphone" r... This dog gave up mid jump. 9/10 https://t.co/K... NaN NaN NaN https://twitter.com/dog_rates/status/677334615... 9 10 None doggo
1793 677331501395156992 NaN NaN 2015-12-17 03:36:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Humphrey. He's a Northern Polyp Viagra. O... NaN NaN NaN https://twitter.com/dog_rates/status/677331501... 9 10 Humphrey doggo
1794 677328882937298944 NaN NaN 2015-12-17 03:26:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. All the dogs adore Derek. He's ... NaN NaN NaN https://twitter.com/dog_rates/status/677328882... 10 10 Derek doggo
1795 677314812125323265 NaN NaN 2015-12-17 02:30:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tassy &amp; Bee. Tassy is pretty chill, b... NaN NaN NaN https://twitter.com/dog_rates/status/677314812... 10 10 Tassy doggo
1796 677301033169788928 NaN NaN 2015-12-17 01:35:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Juckson. He's totally on his way to a ... NaN NaN NaN https://twitter.com/dog_rates/status/677301033... 5 10 Juckson doggo
1797 677269281705472000 NaN NaN 2015-12-16 23:29:14 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest pupper I've ever seen. 10... NaN NaN NaN https://twitter.com/dog_rates/status/677269281... 10 10 the doggo
1798 677228873407442944 NaN NaN 2015-12-16 20:48:40 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Chuq. He just wants to fit in. 11... NaN NaN NaN https://twitter.com/dog_rates/status/677228873... 11 10 Chuq doggo
1799 677187300187611136 NaN NaN 2015-12-16 18:03:28 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a Byzantine Rigatoni. Very aerodyn... NaN NaN NaN https://twitter.com/dog_rates/status/677187300... 9 10 None doggo
1800 676975532580409345 NaN NaN 2015-12-16 04:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He doesn't know how cheese wor... NaN NaN NaN https://twitter.com/dog_rates/status/676975532... 11 10 Cooper doggo
1801 676957860086095872 NaN NaN 2015-12-16 02:51:45 +0000 <a href="http://twitter.com/download/iphone" r... 10/10 I'd follow this dog into battle no quest... NaN NaN NaN https://twitter.com/dog_rates/status/676957860... 10 10 None doggo
1802 676949632774234114 NaN NaN 2015-12-16 02:19:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyrus. He's a Speckled Centennial Tico... NaN NaN NaN https://twitter.com/dog_rates/status/676949632... 8 10 Tyrus doggo
1803 676948236477857792 NaN NaN 2015-12-16 02:13:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Karl. Karl thinks he's slick. 6/10 sne... NaN NaN NaN https://twitter.com/dog_rates/status/676948236... 6 10 Karl doggo
1804 676946864479084545 NaN NaN 2015-12-16 02:08:04 +0000 <a href="http://twitter.com/download/iphone" r... This pups goal was to get all four feet as clo... NaN NaN NaN https://twitter.com/dog_rates/status/676946864... 12 10 None doggo
1805 676942428000112642 NaN NaN 2015-12-16 01:50:26 +0000 <a href="http://twitter.com/download/iphone" r... Who leaves the last cupcake just sitting there... NaN NaN NaN https://twitter.com/dog_rates/status/676942428... 9 10 None doggo
1806 676936541936185344 NaN NaN 2015-12-16 01:27:03 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a rare pouched pupper. Ample stora... NaN NaN NaN https://twitter.com/dog_rates/status/676936541... 8 10 None doggo
1807 676916996760600576 NaN NaN 2015-12-16 00:09:23 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Super speedy pupper. Does not go gentle into t... NaN NaN NaN https://vine.co/v/imJ0BdZOJTw 10 10 None doggo
1808 676897532954456065 NaN NaN 2015-12-15 22:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Exotic handheld dog here. Appears unathletic. ... NaN NaN NaN https://twitter.com/dog_rates/status/676897532... 5 10 None doggo
1809 676864501615042560 NaN NaN 2015-12-15 20:40:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's just a head now. Lost his body ... NaN NaN NaN https://twitter.com/dog_rates/status/676864501... 10 10 Ash doggo
1810 676821958043033607 NaN NaN 2015-12-15 17:51:44 +0000 <a href="http://twitter.com/download/iphone" r... Finally some constructive political change in ... NaN NaN NaN https://twitter.com/dog_rates/status/676821958... 11 10 None doggo
1811 676819651066732545 NaN NaN 2015-12-15 17:42:34 +0000 <a href="http://twitter.com/download/iphone" r... Watch out Airbud. This pupper is also good at ... NaN NaN NaN https://twitter.com/dog_rates/status/676819651... 12 10 None doggo
1812 676811746707918848 NaN NaN 2015-12-15 17:11:09 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Penny &amp; Gizmo. They are pract... NaN NaN NaN https://twitter.com/dog_rates/status/676811746... 9 10 Penny doggo
1813 676776431406465024 NaN NaN 2015-12-15 14:50:49 +0000 <a href="http://twitter.com/download/iphone" r... When someone yells "cops!" at a party and you ... NaN NaN NaN https://twitter.com/dog_rates/status/676776431... 10 10 None doggo
1814 676617503762681856 NaN NaN 2015-12-15 04:19:18 +0000 <a href="http://twitter.com/download/iphone" r... I promise this wasn't meant to be a cuteness o... NaN NaN NaN https://twitter.com/dog_rates/status/676617503... 13 10 None doggo
1815 676613908052996102 NaN NaN 2015-12-15 04:05:01 +0000 <a href="http://twitter.com/download/iphone" r... This is the saddest/sweetest/best picture I've... NaN NaN NaN https://twitter.com/dog_rates/status/676613908... 12 10 the doggo
1816 676606785097199616 NaN NaN 2015-12-15 03:36:42 +0000 <a href="http://twitter.com/download/iphone" r... *screeches for a sec and then faints* 12/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/676606785... 12 10 None doggo
1817 676603393314578432 NaN NaN 2015-12-15 03:23:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Godzilla pupper. He had a ruff childho... NaN NaN NaN https://twitter.com/dog_rates/status/676603393... 9 10 Godzilla doggo
1818 676593408224403456 NaN NaN 2015-12-15 02:43:33 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper loves leaves. 11/10 for committed ... NaN NaN NaN https://vine.co/v/eEQQaPFbgOY 11 10 None doggo
1819 676590572941893632 6.765883e+17 4.196984e+09 2015-12-15 02:32:17 +0000 <a href="http://twitter.com/download/iphone" r... After some outrage from the crowd. Bubbles is ... NaN NaN NaN NaN 7 10 None doggo
1820 676588346097852417 NaN NaN 2015-12-15 02:23:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubbles. He kinda resembles a fish. Al... NaN NaN NaN https://twitter.com/dog_rates/status/676588346... 5 10 Bubbles doggo
1821 676582956622721024 NaN NaN 2015-12-15 02:02:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vinnie. He's having fun while being safe.... NaN NaN NaN https://twitter.com/dog_rates/status/676582956... 8 10 Vinnie doggo
1822 676575501977128964 NaN NaN 2015-12-15 01:32:24 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is very passionate about Christmas... NaN NaN NaN https://twitter.com/dog_rates/status/676575501... 8 10 None doggo
1823 676533798876651520 NaN NaN 2015-12-14 22:46:41 +0000 <a href="http://twitter.com/download/iphone" r... ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ NaN NaN NaN https://twitter.com/dog_rates/status/676533798... 12 10 None doggo
1824 676496375194980353 NaN NaN 2015-12-14 20:17:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Griffin. He's upset because his c... NaN NaN NaN https://twitter.com/dog_rates/status/676496375... 9 10 Griffin doggo
1825 676470639084101634 NaN NaN 2015-12-14 18:35:43 +0000 <a href="http://twitter.com/download/iphone" r... Three generations of pupper. 11/10 for all htt... NaN NaN NaN https://twitter.com/dog_rates/status/676470639... 11 10 None doggo
1826 676440007570247681 NaN NaN 2015-12-14 16:34:00 +0000 <a href="http://twitter.com/download/iphone" r... Hope your Monday isn't too awful. Here's two b... NaN NaN NaN https://twitter.com/dog_rates/status/676440007... 11 10 None doggo
1827 676430933382295552 NaN NaN 2015-12-14 15:57:56 +0000 <a href="http://twitter.com/download/iphone" r... Meet Duke. He's an Urban Parmesan. They know h... NaN NaN NaN https://twitter.com/dog_rates/status/676430933... 10 10 Duke doggo
1828 676263575653122048 NaN NaN 2015-12-14 04:52:55 +0000 <a href="http://twitter.com/download/iphone" r... All this pupper wanted to do was go skiing. No... NaN NaN NaN https://twitter.com/dog_rates/status/676263575... 10 10 None doggo
1829 676237365392908289 NaN NaN 2015-12-14 03:08:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winston. He has no respect for th... NaN NaN NaN https://twitter.com/dog_rates/status/676237365... 8 10 Winston doggo
1830 676219687039057920 NaN NaN 2015-12-14 01:58:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Kenneth. He's stuck in a bubble. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/676219687... 10 10 Kenneth doggo
1831 676215927814406144 NaN NaN 2015-12-14 01:43:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. He just wants to be like the oth... NaN NaN NaN https://twitter.com/dog_rates/status/676215927... 9 10 Herm doggo
1832 676191832485810177 NaN NaN 2015-12-14 00:07:50 +0000 <a href="http://twitter.com/download/iphone" r... These two pups just met and have instantly bon... NaN NaN NaN https://twitter.com/dog_rates/status/676191832... 10 10 None doggo
1833 676146341966438401 NaN NaN 2015-12-13 21:07:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bert. He likes flowers. 10/10 https://... NaN NaN NaN https://twitter.com/dog_rates/status/676146341... 10 10 Bert doggo
1834 676121918416756736 NaN NaN 2015-12-13 19:30:01 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a very excited dog. Cle... NaN NaN NaN https://vine.co/v/iZXg7VpeDAv 8 10 None doggo
1835 676101918813499392 NaN NaN 2015-12-13 18:10:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Striker. He's ready for Christmas. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/676101918... 11 10 Striker doggo
1836 676098748976615425 NaN NaN 2015-12-13 17:57:57 +0000 <a href="http://twitter.com/download/iphone" r... Extremely rare pup here. Very religious. Alway... NaN NaN NaN https://twitter.com/dog_rates/status/676098748... 3 10 None doggo
1837 676089483918516224 NaN NaN 2015-12-13 17:21:08 +0000 <a href="http://twitter.com/download/iphone" r... "Yes hello I'ma just snag this here toasted ba... NaN NaN NaN https://twitter.com/dog_rates/status/676089483... 9 10 None doggo
1838 675898130735476737 NaN NaN 2015-12-13 04:40:46 +0000 <a href="http://twitter.com/download/iphone" r... I'm sure you've all seen this pupper. Not prep... NaN NaN NaN https://twitter.com/dog_rates/status/675898130... 10 10 None doggo
1839 675891555769696257 NaN NaN 2015-12-13 04:14:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Donny. He's summoning the demon monste... NaN NaN NaN https://twitter.com/dog_rates/status/675891555... 6 10 Donny doggo
1840 675888385639251968 NaN NaN 2015-12-13 04:02:03 +0000 <a href="http://twitter.com/download/iphone" r... Breathtaking scene. A father taking care of hi... NaN NaN NaN https://twitter.com/dog_rates/status/675888385... 10 10 None doggo
1841 675878199931371520 NaN NaN 2015-12-13 03:21:34 +0000 <a href="http://twitter.com/download/iphone" r... Ok, I'll admit this is a pretty adorable bunny... NaN NaN NaN https://twitter.com/dog_rates/status/675878199... 11 10 None doggo
1842 675870721063669760 6.757073e+17 4.196984e+09 2015-12-13 02:51:51 +0000 <a href="http://twitter.com/download/iphone" r... &amp; this is Yoshi. Another world record cont... NaN NaN NaN https://twitter.com/dog_rates/status/675870721... 11 10 None doggo
1843 675853064436391936 NaN NaN 2015-12-13 01:41:41 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an entire platoon of puppers. Tot... NaN NaN NaN https://twitter.com/dog_rates/status/675853064... 88 80 None doggo
1844 675849018447167488 6.758457e+17 4.196984e+09 2015-12-13 01:25:37 +0000 <a href="http://twitter.com/download/iphone" r... This dog is being demoted to a 9/10 for not we... NaN NaN NaN NaN 9 10 None doggo
1845 675845657354215424 NaN NaN 2015-12-13 01:12:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Pepper. She's not fully comfortable ri... NaN NaN NaN https://twitter.com/dog_rates/status/675845657... 10 10 Pepper doggo
1846 675822767435051008 NaN NaN 2015-12-12 23:41:18 +0000 <a href="http://twitter.com/download/iphone" r... 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s ht... NaN NaN NaN https://twitter.com/dog_rates/status/675822767... 10 10 None doggo
1847 675820929667219457 NaN NaN 2015-12-12 23:34:00 +0000 <a href="http://twitter.com/download/iphone" r... Here's a handful of sleepy puppers. All look u... NaN NaN NaN https://twitter.com/dog_rates/status/675820929... 11 10 None doggo
1848 675798442703122432 NaN NaN 2015-12-12 22:04:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He just touched a boob for the... NaN NaN NaN https://twitter.com/dog_rates/status/675798442... 10 10 Bernie doggo
1849 675781562965868544 NaN NaN 2015-12-12 20:57:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Buddah. He was Waldo for Hallowee... NaN NaN NaN https://twitter.com/dog_rates/status/675781562... 11 10 Buddah doggo
1850 675740360753160193 NaN NaN 2015-12-12 18:13:51 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper licking in slow motion. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/675740360... 12 10 None doggo
1851 675710890956750848 NaN NaN 2015-12-12 16:16:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Lenny. He was just told that he couldn... NaN NaN NaN https://twitter.com/dog_rates/status/675710890... 12 10 Lenny doggo
1852 675707330206547968 6.754971e+17 4.196984e+09 2015-12-12 16:02:36 +0000 <a href="http://twitter.com/download/iphone" r... We've got ourselves a battle here. Watch out R... NaN NaN NaN https://twitter.com/dog_rates/status/675707330... 11 10 None doggo
1853 675706639471788032 NaN NaN 2015-12-12 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is a Sizzlin Menorah spaniel from Brookly... NaN NaN NaN https://twitter.com/dog_rates/status/675706639... 10 10 a doggo
1854 675534494439489536 NaN NaN 2015-12-12 04:35:48 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys?! Only send in dogs. I only rat... NaN NaN NaN https://twitter.com/dog_rates/status/675534494... 11 10 a doggo
1855 675531475945709568 NaN NaN 2015-12-12 04:23:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Ellie AKA Queen Slayer of the Orbs. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/675531475... 10 10 Ellie doggo
1856 675522403582218240 NaN NaN 2015-12-12 03:47:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sammy. He's a Motorola Firefox. Hat under... NaN NaN NaN https://twitter.com/dog_rates/status/675522403... 10 10 Sammy doggo
1857 675517828909424640 NaN NaN 2015-12-12 03:29:35 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 stay woke https://t.co/XDiQw4Akiw NaN NaN NaN https://twitter.com/dog_rates/status/675517828... 12 10 None doggo
1858 675501075957489664 NaN NaN 2015-12-12 02:23:01 +0000 <a href="http://twitter.com/download/iphone" r... I shall call him squishy and he shall be mine,... NaN NaN NaN https://twitter.com/dog_rates/status/675501075... 13 10 None doggo
1859 675497103322386432 NaN NaN 2015-12-12 02:07:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Reggie. He's going for the world record. ... NaN NaN NaN https://twitter.com/dog_rates/status/675497103... 11 10 Reggie doggo
1860 675489971617296384 NaN NaN 2015-12-12 01:38:53 +0000 <a href="http://twitter.com/download/iphone" r... RT until we find this dog. Clearly a cool dog ... NaN NaN NaN https://twitter.com/dog_rates/status/675489971... 10 10 None doggo
1861 675483430902214656 NaN NaN 2015-12-12 01:12:54 +0000 <a href="http://twitter.com/download/iphone" r... Rare shielded battle dog here. Very happy abou... NaN NaN NaN https://twitter.com/dog_rates/status/675483430... 5 10 None doggo
1862 675432746517426176 NaN NaN 2015-12-11 21:51:30 +0000 <a href="http://twitter.com/download/iphone" r... Happy Friday. Here's some golden puppers. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/675432746... 12 10 None doggo
1863 675372240448454658 NaN NaN 2015-12-11 17:51:04 +0000 <a href="http://twitter.com/download/iphone" r... The tail alone is 13/10. Great dog, better own... NaN NaN NaN https://twitter.com/dog_rates/status/675372240... 13 10 None doggo
1864 675362609739206656 NaN NaN 2015-12-11 17:12:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She loves that shoe. Still no s... NaN NaN NaN https://twitter.com/dog_rates/status/675362609... 12 10 Daisy doggo
1865 675354435921575936 NaN NaN 2015-12-11 16:40:19 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Everyone needs to watch this. 13/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/675354435... 13 10 None doggo
1866 675349384339542016 6.749998e+17 4.196984e+09 2015-12-11 16:20:15 +0000 <a href="http://twitter.com/download/iphone" r... Yea I lied. Here's more. All 13/10 https://t.c... NaN NaN NaN https://twitter.com/dog_rates/status/675349384... 13 10 None doggo
1867 675334060156301312 NaN NaN 2015-12-11 15:19:21 +0000 <a href="http://twitter.com/download/iphone" r... Good morning here's a grass pupper. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/675334060... 12 10 None doggo
1868 675166823650848770 NaN NaN 2015-12-11 04:14:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Arnold. He broke his leg saving a hand... NaN NaN NaN https://twitter.com/dog_rates/status/675166823... 10 10 Arnold doggo
1869 675153376133427200 NaN NaN 2015-12-11 03:21:23 +0000 <a href="http://twitter.com/download/iphone" r... What kind of person sends in a picture without... NaN NaN NaN https://twitter.com/dog_rates/status/675153376... 1 10 None doggo
1870 675149409102012420 NaN NaN 2015-12-11 03:05:37 +0000 <a href="http://twitter.com/download/iphone" r... holy shit 12/10 https://t.co/p6O8X93bTQ NaN NaN NaN https://twitter.com/dog_rates/status/675149409... 12 10 None doggo
1871 675147105808306176 NaN NaN 2015-12-11 02:56:28 +0000 <a href="http://twitter.com/download/iphone" r... When you're presenting a group project and the... NaN NaN NaN https://twitter.com/dog_rates/status/675147105... 10 10 None doggo
1872 675146535592706048 NaN NaN 2015-12-11 02:54:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Coops. He's yelling at the carpet. Not... NaN NaN NaN https://twitter.com/dog_rates/status/675146535... 7 10 Coops doggo
1873 675145476954566656 NaN NaN 2015-12-11 02:49:59 +0000 <a href="http://twitter.com/download/iphone" r... What an honor. 3 dogs here. Blond one is clear... NaN NaN NaN https://twitter.com/dog_rates/status/675145476... 9 10 None doggo
1874 675135153782571009 NaN NaN 2015-12-11 02:08:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He got locked outside. Damn it... NaN NaN NaN https://twitter.com/dog_rates/status/675135153... 5 10 Steven doggo
1875 675113801096802304 NaN NaN 2015-12-11 00:44:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zuzu. He just graduated college. Astute p... NaN NaN NaN https://twitter.com/dog_rates/status/675113801... 10 10 Zuzu doggo
1876 675111688094527488 NaN NaN 2015-12-11 00:35:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He thought what was insid... NaN NaN NaN https://twitter.com/dog_rates/status/675111688... 8 10 Oliver doggo
1877 675109292475830276 NaN NaN 2015-12-11 00:26:12 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. We've been over this. We only rate... NaN NaN NaN https://twitter.com/dog_rates/status/675109292... 9 10 a doggo
1878 675047298674663426 NaN NaN 2015-12-10 20:19:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a fluffy albino Bacardi Columbia mix. ... NaN NaN NaN https://twitter.com/dog_rates/status/675047298... 11 10 a doggo
1879 675015141583413248 NaN NaN 2015-12-10 18:12:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Moe. He's a golden Fetty Woof. Doesn't re... NaN NaN NaN https://twitter.com/dog_rates/status/675015141... 10 10 Moe doggo
1880 675006312288268288 NaN NaN 2015-12-10 17:37:00 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mollie. This pic was taken after ... NaN NaN NaN https://twitter.com/dog_rates/status/675006312... 10 10 Mollie doggo
1881 675003128568291329 NaN NaN 2015-12-10 17:24:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Laela. She's adorable. Magnificent eyes. ... NaN NaN NaN https://twitter.com/dog_rates/status/675003128... 12 10 Laela doggo
1882 674999807681908736 6.747934e+17 4.196984e+09 2015-12-10 17:11:09 +0000 <a href="http://twitter.com/download/iphone" r... Ok last one of these. I may try to make some m... NaN NaN NaN https://twitter.com/dog_rates/status/674999807... 13 10 None doggo
1883 674805413498527744 NaN NaN 2015-12-10 04:18:42 +0000 <a href="http://twitter.com/download/iphone" r... When your entire life is crumbling before you ... NaN NaN NaN https://twitter.com/dog_rates/status/674805413... 10 10 None doggo
1884 674800520222154752 NaN NaN 2015-12-10 03:59:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedders. He broke his leg saving babie... NaN NaN NaN https://twitter.com/dog_rates/status/674800520... 11 10 Tedders doggo
1885 674793399141146624 6.717299e+17 4.196984e+09 2015-12-10 03:30:58 +0000 <a href="http://twitter.com/download/iphone" r... I have found another. 13/10 https://t.co/HwroP... NaN NaN NaN https://twitter.com/dog_rates/status/674793399... 13 10 None doggo
1886 674790488185167872 NaN NaN 2015-12-10 03:19:24 +0000 <a href="http://twitter.com/download/iphone" r... ER... MER... GERD 13/10 https://t.co/L1puJISV1a NaN NaN NaN https://twitter.com/dog_rates/status/674790488... 13 10 None doggo
1887 674788554665512960 NaN NaN 2015-12-10 03:11:43 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maggie. She's a Western Septic Do... NaN NaN NaN https://twitter.com/dog_rates/status/674788554... 9 10 Maggie doggo
1888 674781762103414784 NaN NaN 2015-12-10 02:44:43 +0000 <a href="http://twitter.com/download/iphone" r... Bedazzled pup here. Fashionable af. Super yell... NaN NaN NaN https://twitter.com/dog_rates/status/674781762... 8 10 None doggo
1889 674774481756377088 NaN NaN 2015-12-10 02:15:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Superpup. His head isn't proportional ... NaN NaN NaN https://twitter.com/dog_rates/status/674774481... 11 10 Superpup doggo
1890 674767892831932416 NaN NaN 2015-12-10 01:49:36 +0000 <a href="http://twitter.com/download/iphone" r... This pup was carefully tossed to make it look ... NaN NaN NaN https://twitter.com/dog_rates/status/674767892... 12 10 None doggo
1891 674764817387900928 NaN NaN 2015-12-10 01:37:23 +0000 <a href="http://twitter.com/download/iphone" r... These two pups are masters of camouflage. Very... NaN NaN NaN https://twitter.com/dog_rates/status/674764817... 10 10 None doggo
1892 674754018082705410 6.747522e+17 4.196984e+09 2015-12-10 00:54:28 +0000 <a href="http://twitter.com/download/iphone" r... Just received another perfect photo of dogs an... NaN NaN NaN https://twitter.com/dog_rates/status/674754018... 12 10 None doggo
1893 674752233200820224 NaN NaN 2015-12-10 00:47:23 +0000 <a href="http://twitter.com/download/iphone" r... Everyone please just appreciate how perfect th... NaN NaN NaN https://twitter.com/dog_rates/status/674752233... 12 10 None doggo
1894 674743008475090944 NaN NaN 2015-12-10 00:10:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just saw a spider. 10/10 d... NaN NaN NaN https://twitter.com/dog_rates/status/674743008... 10 10 Sophie doggo
1895 674742531037511680 6.747400e+17 4.196984e+09 2015-12-10 00:08:50 +0000 <a href="http://twitter.com/download/iphone" r... Some clarification is required. The dog is sin... NaN NaN NaN NaN 11 10 None doggo
1896 674739953134403584 NaN NaN 2015-12-09 23:58:35 +0000 <a href="http://twitter.com/download/iphone" r... "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10... NaN NaN NaN https://twitter.com/dog_rates/status/674739953... 11 10 None doggo
1897 674737130913071104 NaN NaN 2015-12-09 23:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rufio. He is unaware of the pink legless ... NaN NaN NaN https://twitter.com/dog_rates/status/674737130... 10 10 Rufio doggo
1898 674690135443775488 NaN NaN 2015-12-09 20:40:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Patrick. He's an exotic pup. Jumps great ... NaN NaN NaN https://twitter.com/dog_rates/status/674690135... 3 10 Patrick doggo
1899 674670581682434048 NaN NaN 2015-12-09 19:22:56 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jeb &amp; Bush. Jeb is somehow stuck in t... NaN NaN NaN https://twitter.com/dog_rates/status/674670581... 9 10 Jeb doggo
1900 674664755118911488 NaN NaN 2015-12-09 18:59:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Rodman. He's getting destroyed by the ... NaN NaN NaN https://twitter.com/dog_rates/status/674664755... 10 10 Rodman doggo
1901 674646392044941312 NaN NaN 2015-12-09 17:46:48 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous dogs here. Little waddling dog is... NaN NaN NaN https://twitter.com/dog_rates/status/674646392... 5 10 None doggo
1902 674644256330530816 NaN NaN 2015-12-09 17:38:19 +0000 <a href="http://twitter.com/download/iphone" r... When you see sophomores in high school driving... NaN NaN NaN https://twitter.com/dog_rates/status/674644256... 11 10 None doggo
1903 674638615994089473 NaN NaN 2015-12-09 17:15:54 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is fed up with being tickled. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/674638615... 12 10 None doggo
1904 674632714662858753 NaN NaN 2015-12-09 16:52:27 +0000 <a href="http://twitter.com/download/iphone" r... Rare submerged pup here. Holds breath for a lo... NaN NaN NaN https://twitter.com/dog_rates/status/674632714... 5 10 None doggo
1905 674606911342424069 6.744689e+17 4.196984e+09 2015-12-09 15:09:55 +0000 <a href="http://twitter.com/download/iphone" r... The 13/10 also takes into account this impecca... NaN NaN NaN NaN 13 10 None doggo
1906 674468880899788800 NaN NaN 2015-12-09 06:01:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He thinks he's flying. 13/10 th... NaN NaN NaN https://twitter.com/dog_rates/status/674468880... 13 10 Louis doggo
1907 674447403907457024 NaN NaN 2015-12-09 04:36:06 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just wants a belly rub. This puppe... NaN NaN NaN https://twitter.com/dog_rates/status/674447403... 10 10 None doggo
1908 674436901579923456 NaN NaN 2015-12-09 03:54:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bailey. She plays with her food. Very chi... NaN NaN NaN https://twitter.com/dog_rates/status/674436901... 9 10 Bailey doggo
1909 674422304705744896 NaN NaN 2015-12-09 02:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She doesn't understand flowers. 1... NaN NaN NaN https://twitter.com/dog_rates/status/674422304... 12 10 Ava doggo
1910 674416750885273600 NaN NaN 2015-12-09 02:34:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Jonah. He's a Stinted Fisher Price. En... NaN NaN NaN https://twitter.com/dog_rates/status/674416750... 10 10 Jonah doggo
1911 674410619106390016 NaN NaN 2015-12-09 02:09:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lenny. He wants to be a sprinkler. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/674410619... 10 10 Lenny doggo
1912 674394782723014656 NaN NaN 2015-12-09 01:07:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He's a hide and seek champion. S... NaN NaN NaN https://twitter.com/dog_rates/status/674394782... 8 10 Gary doggo
1913 674372068062928900 NaN NaN 2015-12-08 23:36:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chesney. On the outside he stays calm &am... NaN NaN NaN https://twitter.com/dog_rates/status/674372068... 10 10 Chesney doggo
1914 674330906434379776 6.658147e+17 1.637468e+07 2015-12-08 20:53:11 +0000 <a href="http://twitter.com/download/iphone" r... 13/10\n@ABC7 NaN NaN NaN NaN 13 10 None doggo
1915 674318007229923329 NaN NaN 2015-12-08 20:01:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lennon. He's in quite the predicament.... NaN NaN NaN https://twitter.com/dog_rates/status/674318007... 8 10 Lennon doggo
1916 674307341513269249 NaN NaN 2015-12-08 19:19:32 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is life-changing. 12/10 https://t.co/SroT... NaN NaN NaN https://vine.co/v/i7nWzrenw5h 12 10 life doggo
1917 674291837063053312 NaN NaN 2015-12-08 18:17:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Kenny. He just wants to be included in... NaN NaN NaN https://twitter.com/dog_rates/status/674291837... 11 10 Kenny doggo
1918 674271431610523648 NaN NaN 2015-12-08 16:56:51 +0000 <a href="http://twitter.com/download/iphone" r... "AT DAWN, WE RIDE"\n10/10 for both dogs https:... NaN NaN NaN https://twitter.com/dog_rates/status/674271431... 10 10 None doggo
1919 674269164442398721 NaN NaN 2015-12-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Bob. He's a Juniper Fitzsimmons. His b... NaN NaN NaN https://twitter.com/dog_rates/status/674269164... 8 10 Bob doggo
1920 674265582246694913 NaN NaN 2015-12-08 16:33:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Henry. He's a shit dog. Short pointy e... NaN NaN NaN https://twitter.com/dog_rates/status/674265582... 2 10 Henry doggo
1921 674262580978937856 NaN NaN 2015-12-08 16:21:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's super stoked about being an ... NaN NaN NaN https://twitter.com/dog_rates/status/674262580... 9 10 Gus doggo
1922 674255168825880576 NaN NaN 2015-12-08 15:52:13 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobbay. He's a marshmallow wizard... NaN NaN NaN https://twitter.com/dog_rates/status/674255168... 10 10 Bobbay doggo
1923 674082852460433408 NaN NaN 2015-12-08 04:27:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a Sagitariot Baklava mix. Loves her ne... NaN NaN NaN https://twitter.com/dog_rates/status/674082852... 11 10 a doggo
1924 674075285688614912 NaN NaN 2015-12-08 03:57:26 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mitch. He thinks that's a hat. No... NaN NaN NaN https://twitter.com/dog_rates/status/674075285... 11 10 Mitch doggo
1925 674063288070742018 NaN NaN 2015-12-08 03:09:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. Earl is lost. Someone help Earl.... NaN NaN NaN https://twitter.com/dog_rates/status/674063288... 5 10 Earl doggo
1926 674053186244734976 NaN NaN 2015-12-08 02:29:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Yes he is aware of the spoon'... NaN NaN NaN https://twitter.com/dog_rates/status/674053186... 10 10 Stanley doggo
1927 674051556661161984 NaN NaN 2015-12-08 02:23:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She knits. Specializes in tobogg... NaN NaN NaN https://twitter.com/dog_rates/status/674051556... 10 10 Lucy doggo
1928 674045139690631169 NaN NaN 2015-12-08 01:57:39 +0000 <a href="http://twitter.com/download/iphone" r... Herd of wild dogs here. Not sure what they're ... NaN NaN NaN https://twitter.com/dog_rates/status/674045139... 3 10 None doggo
1929 674042553264685056 NaN NaN 2015-12-08 01:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle the cuteness anymore. Curls... NaN NaN NaN https://twitter.com/dog_rates/status/674042553... 12 10 None doggo
1930 674038233588723717 NaN NaN 2015-12-08 01:30:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Kaiya. She's an aspiring shoe model. 1... NaN NaN NaN https://twitter.com/dog_rates/status/674038233... 12 10 Kaiya doggo
1931 674036086168010753 NaN NaN 2015-12-08 01:21:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She has no eyes &amp; her face has... NaN NaN NaN https://twitter.com/dog_rates/status/674036086... 9 10 Daisy doggo
1932 674024893172875264 NaN NaN 2015-12-08 00:37:11 +0000 <a href="http://twitter.com/download/iphone" r... When you realize it doesn't matter how hard yo... NaN NaN NaN https://twitter.com/dog_rates/status/674024893... 10 10 None doggo
1933 674019345211760640 NaN NaN 2015-12-08 00:15:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Acro. You briefly see her out of the c... NaN NaN NaN https://twitter.com/dog_rates/status/674019345... 10 10 Acro doggo
1934 674014384960745472 NaN NaN 2015-12-07 23:55:26 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Aiden. His eyes are magical. Love... NaN NaN NaN https://twitter.com/dog_rates/status/674014384... 11 10 Aiden doggo
1935 674008982932058114 NaN NaN 2015-12-07 23:33:58 +0000 <a href="http://twitter.com/download/iphone" r... This pup is sad bc he didn't get to be the toy... NaN NaN NaN https://twitter.com/dog_rates/status/674008982... 10 10 None doggo
1936 673956914389192708 NaN NaN 2015-12-07 20:07:04 +0000 <a href="http://twitter.com/download/iphone" r... This is one esteemed pupper. Just graduated co... NaN NaN NaN https://twitter.com/dog_rates/status/673956914... 10 10 one doggo
1937 673919437611909120 NaN NaN 2015-12-07 17:38:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Obie. He is on guard watching for evil... NaN NaN NaN https://twitter.com/dog_rates/status/673919437... 11 10 Obie doggo
1938 673906403526995968 NaN NaN 2015-12-07 16:46:21 +0000 <a href="http://twitter.com/download/iphone" r... Guys I'm getting real tired of this. We only r... NaN NaN NaN https://twitter.com/dog_rates/status/673906403... 3 10 None doggo
1939 673887867907739649 NaN NaN 2015-12-07 15:32:42 +0000 <a href="http://twitter.com/download/iphone" r... When you're having a great time sleeping and y... NaN NaN NaN https://twitter.com/dog_rates/status/673887867... 10 10 None doggo
1940 673716320723169284 6.737159e+17 4.196984e+09 2015-12-07 04:11:02 +0000 <a href="http://twitter.com/download/iphone" r... The millennials have spoken and we've decided ... NaN NaN NaN NaN 1 10 None doggo
1941 673715861853720576 NaN NaN 2015-12-07 04:09:13 +0000 <a href="http://twitter.com/download/iphone" r... This is a heavily opinionated dog. Loves walls... NaN NaN NaN https://twitter.com/dog_rates/status/673715861... 4 10 a doggo
1942 673711475735838725 NaN NaN 2015-12-07 03:51:47 +0000 <a href="http://twitter.com/download/iphone" r... 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/673711475... 10 10 None doggo
1943 673709992831262724 NaN NaN 2015-12-07 03:45:53 +0000 <a href="http://twitter.com/download/iphone" r... I know a lot of you are studying for finals. G... NaN NaN NaN https://twitter.com/dog_rates/status/673709992... 12 10 None doggo
1944 673708611235921920 NaN NaN 2015-12-07 03:40:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. She's just an adorable football... NaN NaN NaN https://twitter.com/dog_rates/status/673708611... 12 10 Riley doggo
1945 673707060090052608 NaN NaN 2015-12-07 03:34:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Raymond. He's absolutely terrified of ... NaN NaN NaN https://twitter.com/dog_rates/status/673707060... 10 10 Raymond doggo
1946 673705679337693185 NaN NaN 2015-12-07 03:28:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Dot. He found out you only pretended t... NaN NaN NaN https://twitter.com/dog_rates/status/673705679... 8 10 Dot doggo
1947 673700254269775872 NaN NaN 2015-12-07 03:07:12 +0000 <a href="http://twitter.com/download/iphone" r... Large blue dog here. Cool shades. Flipping us ... NaN NaN NaN https://twitter.com/dog_rates/status/673700254... 3 10 None doggo
1948 673697980713705472 NaN NaN 2015-12-07 02:58:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a tiny pointy pupper. A... NaN NaN NaN https://twitter.com/dog_rates/status/673697980... 8 10 Pickles doggo
1949 673689733134946305 NaN NaN 2015-12-07 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... When you're having a blast and remember tomorr... NaN NaN NaN https://twitter.com/dog_rates/status/673689733... 11 10 None doggo
1950 673688752737402881 NaN NaN 2015-12-07 02:21:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He doesn't know how to shoe. 9/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/673688752... 9 10 Larry doggo
1951 673686845050527744 NaN NaN 2015-12-07 02:13:55 +0000 <a href="http://twitter.com/download/iphone" r... This is George. He's upset that the 4th of Jul... NaN NaN NaN https://twitter.com/dog_rates/status/673686845... 11 10 George doggo
1952 673680198160809984 NaN NaN 2015-12-07 01:47:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Shnuggles. I would kill for Shnuggles.... NaN NaN NaN https://twitter.com/dog_rates/status/673680198... 13 10 Shnuggles doggo
1953 673662677122719744 NaN NaN 2015-12-07 00:37:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Kendall. 12/10 would cuddle the hell o... NaN NaN NaN https://twitter.com/dog_rates/status/673662677... 12 10 Kendall doggo
1954 673656262056419329 NaN NaN 2015-12-07 00:12:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Albert AKA King Banana Peel. He's a ki... NaN NaN NaN https://twitter.com/dog_rates/status/673656262... 10 10 Albert doggo
1955 673636718965334016 NaN NaN 2015-12-06 22:54:44 +0000 <a href="http://twitter.com/download/iphone" r... This is a Lofted Aphrodisiac Terrier named Kip... NaN NaN NaN https://twitter.com/dog_rates/status/673636718... 10 10 a doggo
1956 673612854080196609 NaN NaN 2015-12-06 21:19:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffri. He's a speckled ice pupper. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/673612854... 7 10 Jeffri doggo
1957 673583129559498752 NaN NaN 2015-12-06 19:21:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandy. She loves her spot by the tree.... NaN NaN NaN https://twitter.com/dog_rates/status/673583129... 11 10 Sandy doggo
1958 673580926094458881 NaN NaN 2015-12-06 19:13:01 +0000 <a href="http://twitter.com/download/iphone" r... When you ask your professor about extra credit... NaN NaN NaN https://twitter.com/dog_rates/status/673580926... 8 10 None doggo
1959 673576835670777856 NaN NaN 2015-12-06 18:56:46 +0000 <a href="http://twitter.com/download/iphone" r... Sun burnt dog here. Quite large. Wants to prom... NaN NaN NaN https://twitter.com/dog_rates/status/673576835... 7 10 None doggo
1960 673363615379013632 NaN NaN 2015-12-06 04:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This little pupper can't wait for Christmas. H... NaN NaN NaN https://twitter.com/dog_rates/status/673363615... 11 10 None doggo
1961 673359818736984064 NaN NaN 2015-12-06 04:34:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Steve. He was just relaxing in hot tub... NaN NaN NaN https://twitter.com/dog_rates/status/673359818... 8 10 Steve doggo
1962 673355879178194945 NaN NaN 2015-12-06 04:18:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. She's a boss. Helps shift gears.... NaN NaN NaN https://twitter.com/dog_rates/status/673355879... 11 10 Koda doggo
1963 673352124999274496 NaN NaN 2015-12-06 04:03:51 +0000 <a href="http://twitter.com/download/iphone" r... *lets out a tiny screech and then goes into co... NaN NaN NaN https://twitter.com/dog_rates/status/673352124... 12 10 None doggo
1964 673350198937153538 NaN NaN 2015-12-06 03:56:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She's a Genghis Flopped Canuck.... NaN NaN NaN https://twitter.com/dog_rates/status/673350198... 9 10 Bella doggo
1965 673345638550134785 NaN NaN 2015-12-06 03:38:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He's a fluffy lil yellow pup. ... NaN NaN NaN https://twitter.com/dog_rates/status/673345638... 7 10 Gerald doggo
1966 673343217010679808 NaN NaN 2015-12-06 03:28:27 +0000 <a href="http://twitter.com/download/iphone" r... IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNU... NaN NaN NaN https://twitter.com/dog_rates/status/673343217... 11 10 None doggo
1967 673342308415348736 NaN NaN 2015-12-06 03:24:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Django. He's a skilled assassin pupper... NaN NaN NaN https://twitter.com/dog_rates/status/673342308... 10 10 Django doggo
1968 673320132811366400 NaN NaN 2015-12-06 01:56:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Frankie. He's wearing blush. 11/10 rea... NaN NaN NaN https://twitter.com/dog_rates/status/673320132... 11 10 Frankie doggo
1969 673317986296586240 NaN NaN 2015-12-06 01:48:12 +0000 <a href="http://twitter.com/download/iphone" r... Take a moment and appreciate how these two dog... NaN NaN NaN https://twitter.com/dog_rates/status/673317986... 10 10 None doggo
1970 673295268553605120 NaN NaN 2015-12-06 00:17:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Eve. She's a raging alcoholic 8/10 (would... NaN NaN NaN https://twitter.com/dog_rates/status/673295268... 8 10 Eve doggo
1971 673270968295534593 NaN NaN 2015-12-05 22:41:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Mac. His dad's probably a lawyer. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/673270968... 11 10 Mac doggo
1972 673240798075449344 NaN NaN 2015-12-05 20:41:29 +0000 <a href="http://twitter.com/download/iphone" r... Magical floating dog here. Very calm. Always h... NaN NaN NaN https://twitter.com/dog_rates/status/673240798... 6 10 None doggo
1973 673213039743795200 NaN NaN 2015-12-05 18:51:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He just got some big news. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/673213039... 10 10 Dexter doggo
1974 673148804208660480 NaN NaN 2015-12-05 14:35:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Fletcher. He's had a ruff night. No mo... NaN NaN NaN https://twitter.com/dog_rates/status/673148804... 8 10 Fletcher doggo
1975 672997845381865473 NaN NaN 2015-12-05 04:36:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenzie. She is a fluff ball. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/672997845... 12 10 Kenzie doggo
1976 672995267319328768 NaN NaN 2015-12-05 04:25:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Pumpkin. He can look in two different ... NaN NaN NaN https://twitter.com/dog_rates/status/672995267... 8 10 Pumpkin doggo
1977 672988786805112832 NaN NaN 2015-12-05 04:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Schnozz. He's had a blurred tail since... NaN NaN NaN https://twitter.com/dog_rates/status/672988786... 10 10 Schnozz doggo
1978 672984142909456390 NaN NaN 2015-12-05 03:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Very happy pup here. Always smiling. Loves his... NaN NaN NaN https://twitter.com/dog_rates/status/672984142... 9 10 None doggo
1979 672980819271634944 NaN NaN 2015-12-05 03:28:25 +0000 <a href="http://twitter.com/download/iphone" r... Extraordinary dog here. Looks large. Just a he... NaN NaN NaN https://twitter.com/dog_rates/status/672980819... 5 10 None doggo
1980 672975131468300288 NaN NaN 2015-12-05 03:05:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chuckles. He is one skeptical pupper. ... NaN NaN NaN https://twitter.com/dog_rates/status/672975131... 10 10 Chuckles doggo
1981 672970152493887488 NaN NaN 2015-12-05 02:46:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Chet. He's having a hard time. Really ... NaN NaN NaN https://twitter.com/dog_rates/status/672970152... 7 10 Chet doggo
1982 672968025906282496 NaN NaN 2015-12-05 02:37:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Gustaf. He's a purebred Chevy Equinox.... NaN NaN NaN https://twitter.com/dog_rates/status/672968025... 11 10 Gustaf doggo
1983 672964561327235073 NaN NaN 2015-12-05 02:23:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Terry. He's a Toasty Western Sriracha.... NaN NaN NaN https://twitter.com/dog_rates/status/672964561... 10 10 Terry doggo
1984 672902681409806336 NaN NaN 2015-12-04 22:17:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimison. He's stuck in a pot. Damn it ... NaN NaN NaN https://twitter.com/dog_rates/status/672902681... 9 10 Jimison doggo
1985 672898206762672129 NaN NaN 2015-12-04 22:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Cheryl AKA Queen Pupper of the Skies. ... NaN NaN NaN https://twitter.com/dog_rates/status/672898206... 11 10 Cheryl doggo
1986 672884426393653248 NaN NaN 2015-12-04 21:05:23 +0000 <a href="http://twitter.com/download/iphone" r... Marvelous dog here. Rad ears. Not very soft. L... NaN NaN NaN https://twitter.com/dog_rates/status/672884426... 6 10 None doggo
1987 672877615439593473 NaN NaN 2015-12-04 20:38:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's getting bombarded with the... NaN NaN NaN https://twitter.com/dog_rates/status/672877615... 8 10 Oscar doggo
1988 672834301050937345 NaN NaN 2015-12-04 17:46:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Ed. He's not mad, just disappointed. 1... NaN NaN NaN https://twitter.com/dog_rates/status/672834301... 10 10 Ed doggo
1989 672828477930868736 NaN NaN 2015-12-04 17:23:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a Timbuk Slytherin. Eats h... NaN NaN NaN https://twitter.com/dog_rates/status/672828477... 9 10 Jerry doggo
1990 672640509974827008 NaN NaN 2015-12-04 04:56:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Leonidas. He just got rekt by a snowba... NaN NaN NaN https://twitter.com/dog_rates/status/672640509... 9 10 Leonidas doggo
1991 672622327801233409 NaN NaN 2015-12-04 03:43:54 +0000 <a href="http://twitter.com/download/iphone" r... This lil pupper is sad because we haven't foun... NaN NaN NaN https://twitter.com/dog_rates/status/672622327... 12 10 None doggo
1992 672614745925664768 NaN NaN 2015-12-04 03:13:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Norman. Doesn't bark much. Very docile... NaN NaN NaN https://twitter.com/dog_rates/status/672614745... 6 10 Norman doggo
1993 672609152938721280 NaN NaN 2015-12-04 02:51:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Caryl. Likes to get in the microwave. ... NaN NaN NaN https://twitter.com/dog_rates/status/672609152... 9 10 Caryl doggo
1994 672604026190569472 NaN NaN 2015-12-04 02:31:10 +0000 <a href="http://twitter.com/download/iphone" r... This is a baby Rand Paul. Curls for days. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/672604026... 11 10 a doggo
1995 672594978741354496 NaN NaN 2015-12-04 01:55:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scott. Just trying to catch his train to ... NaN NaN NaN https://twitter.com/dog_rates/status/672594978... 9 10 Scott doggo
1996 672591762242805761 NaN NaN 2015-12-04 01:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Taz. He boxes leaves. 10/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/672591762... 10 10 Taz doggo
1997 672591271085670400 NaN NaN 2015-12-04 01:40:29 +0000 <a href="http://twitter.com/download/iphone" r... Lots of pups here. All are Judea Hazelnuts. Ex... NaN NaN NaN https://twitter.com/dog_rates/status/672591271... 8 10 None doggo
1998 672538107540070400 NaN NaN 2015-12-03 22:09:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Darby. He's a Fiscal Tutankhamen Waxbeard... NaN NaN NaN https://twitter.com/dog_rates/status/672538107... 7 10 Darby doggo
1999 672523490734551040 NaN NaN 2015-12-03 21:11:09 +0000 <a href="http://twitter.com/download/iphone" r... When she says she'll be ready in a minute but ... NaN NaN NaN https://twitter.com/dog_rates/status/672523490... 10 10 None doggo
2000 672488522314567680 NaN NaN 2015-12-03 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackie. She was all ready to go out, b... NaN NaN NaN https://twitter.com/dog_rates/status/672488522... 10 10 Jackie doggo
2001 672482722825261057 NaN NaN 2015-12-03 18:29:09 +0000 <a href="http://twitter.com/download/iphone" r... This is light saber pup. Ready to fight off ev... NaN NaN NaN https://twitter.com/dog_rates/status/672482722... 10 10 light doggo
2002 672481316919734272 NaN NaN 2015-12-03 18:23:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jazz. She should be on the cover ... NaN NaN NaN https://twitter.com/dog_rates/status/672481316... 12 10 Jazz doggo
2003 672475084225949696 NaN NaN 2015-12-03 17:58:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's photogenic af. Loves to se... NaN NaN NaN https://twitter.com/dog_rates/status/672475084... 8 10 Buddy doggo
2004 672466075045466113 NaN NaN 2015-12-03 17:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Franq and Pablo. They're working hard ... NaN NaN NaN https://twitter.com/dog_rates/status/672466075... 12 10 Franq doggo
2005 672272411274932228 NaN NaN 2015-12-03 04:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Pippin. He is terrified of his new lit... NaN NaN NaN https://twitter.com/dog_rates/status/672272411... 11 10 Pippin doggo
2006 672267570918129665 NaN NaN 2015-12-03 04:14:13 +0000 <a href="http://twitter.com/download/iphone" r... When you accidentally open up the front facing... NaN NaN NaN https://twitter.com/dog_rates/status/672267570... 10 10 None doggo
2007 672264251789176834 NaN NaN 2015-12-03 04:01:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kreg. He has the eyes of a tyrannical ... NaN NaN NaN https://twitter.com/dog_rates/status/672264251... 10 10 Kreg doggo
2008 672256522047614977 NaN NaN 2015-12-03 03:30:19 +0000 <a href="http://twitter.com/download/iphone" r... Mighty rare dogs here. Long smooth necks. Grea... NaN NaN NaN https://twitter.com/dog_rates/status/672256522... 8 10 None doggo
2009 672254177670729728 NaN NaN 2015-12-03 03:21:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Rolf. He's having the time of his life... NaN NaN NaN https://twitter.com/dog_rates/status/672254177... 11 10 Rolf doggo
2010 672248013293752320 NaN NaN 2015-12-03 02:56:30 +0000 <a href="http://twitter.com/download/iphone" r... 10/10 for dog. 7/10 for cat. 12/10 for human. ... NaN NaN NaN https://twitter.com/dog_rates/status/672248013... 10 10 None doggo
2011 672245253877968896 NaN NaN 2015-12-03 02:45:32 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snickers. He's adorable. Also comes in t-... NaN NaN NaN https://twitter.com/dog_rates/status/672245253... 12 10 Snickers doggo
2012 672239279297454080 NaN NaN 2015-12-03 02:21:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ridley. He doesn't know how to couch. ... NaN NaN NaN https://twitter.com/dog_rates/status/672239279... 7 10 Ridley doggo
2013 672231046314901505 NaN NaN 2015-12-03 01:49:05 +0000 <a href="http://twitter.com/download/iphone" r... Exotic underwater dog here. Very shy. Wont ret... NaN NaN NaN https://twitter.com/dog_rates/status/672231046... 5 10 None doggo
2014 672222792075620352 NaN NaN 2015-12-03 01:16:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cal. He's a Swedish Geriatric Cheddar.... NaN NaN NaN https://twitter.com/dog_rates/status/672222792... 9 10 Cal doggo
2015 672205392827572224 NaN NaN 2015-12-03 00:07:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Opal. He's a Royal John Coctostan. Rea... NaN NaN NaN https://twitter.com/dog_rates/status/672205392... 9 10 Opal doggo
2016 672169685991993344 NaN NaN 2015-12-02 21:45:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradley. That is his sandwich. He carr... NaN NaN NaN https://twitter.com/dog_rates/status/672169685... 10 10 Bradley doggo
2017 672160042234327040 NaN NaN 2015-12-02 21:06:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubba. He's a Titted Peebles Aorta. Ev... NaN NaN NaN https://twitter.com/dog_rates/status/672160042... 8 10 Bubba doggo
2018 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" r... This pup has a heart on its ass and that is do... NaN NaN NaN https://twitter.com/dog_rates/status/672139350... 12 10 None doggo
2019 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is just impressive I have nothing else to... NaN NaN NaN https://twitter.com/dog_rates/status/672125275... 11 10 just doggo
2020 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuco. That's the toast that killed his... NaN NaN NaN https://twitter.com/dog_rates/status/672095186... 9 10 Tuco doggo
2021 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Patch. He wants to be a Christmas tree... NaN NaN NaN https://twitter.com/dog_rates/status/672082170... 11 10 Patch doggo
2022 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's upset because he's no... NaN NaN NaN https://twitter.com/dog_rates/status/672068090... 7 10 Gizmo doggo
2023 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She fell asleep on a piece of pi... NaN NaN NaN https://twitter.com/dog_rates/status/671896809... 10 10 Lola doggo
2024 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Mojo. Apparently he's too cute for a s... NaN NaN NaN https://twitter.com/dog_rates/status/671891728... 11 10 Mojo doggo
2025 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Batdog. He's sleeping now but when he ... NaN NaN NaN https://twitter.com/dog_rates/status/671882082... 11 10 Batdog doggo
2026 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Brad. He's a chubby lil pup. Doesn't r... NaN NaN NaN https://twitter.com/dog_rates/status/671879137... 5 10 Brad doggo
2027 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She was specifically told not get... NaN NaN NaN https://twitter.com/dog_rates/status/671874878... 10 10 Mia doggo
2028 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dylan. He can use a fork but clearly can'... NaN NaN NaN https://twitter.com/dog_rates/status/671866342... 10 10 Dylan doggo
2029 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None doggo
2030 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" r... This is space pup. He's very confused. Tries t... NaN NaN NaN https://twitter.com/dog_rates/status/671789708... 13 10 space doggo
2031 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" r... When you try to recreate the scene from Lady &... NaN NaN NaN https://twitter.com/dog_rates/status/671768281... 10 10 None doggo
2032 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mark. He's a good dog. Always rea... NaN NaN NaN https://twitter.com/dog_rates/status/671763349... 9 10 Mark doggo
2033 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" r... Very fit horned dog here. Looks powerful. Not ... NaN NaN NaN https://twitter.com/dog_rates/status/671744970... 6 10 None doggo
2034 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a Tuscaloosa Alcatraz named Jacob (Yac... NaN NaN NaN https://twitter.com/dog_rates/status/671743150... 11 10 a doggo
2035 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's ready for Christmas. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/671735591... 11 10 Oscar doggo
2036 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I'm just going to leave this one here as well.... NaN NaN NaN https://twitter.com/dog_rates/status/671729906... 13 10 None doggo
2037 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" r... This is the best thing I've ever seen so sprea... NaN NaN NaN https://twitter.com/dog_rates/status/671561002... 13 10 the doggo
2038 671550332464455680 6.715449e+17 4.196984e+09 2015-12-01 04:44:10 +0000 <a href="http://twitter.com/download/iphone" r... After 22 minutes of careful deliberation this ... NaN NaN NaN NaN 1 10 None doggo
2039 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She chews shoes then feels ext... NaN NaN NaN https://twitter.com/dog_rates/status/671547767... 10 10 Marley doggo
2040 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" r... Interesting dog here. Very large. Purple. Mani... NaN NaN NaN https://twitter.com/dog_rates/status/671544874... 6 10 None doggo
2041 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" r... This is JD (stands for "just dog"). He's like ... NaN NaN NaN https://twitter.com/dog_rates/status/671542985... 10 10 JD doggo
2042 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He's very calm. Hasn't eaten i... NaN NaN NaN https://twitter.com/dog_rates/status/671538301... 8 10 Baxter doggo
2043 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He's pondering what life wou... NaN NaN NaN https://twitter.com/dog_rates/status/671536543... 9 10 Reginald doggo
2044 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog here. Spiffy mohawk. Sharp mout... NaN NaN NaN https://twitter.com/dog_rates/status/671533943... 6 10 None doggo
2045 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's in the middle of a serious conv... NaN NaN NaN https://twitter.com/dog_rates/status/671528761... 10 10 Jax doggo
2046 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Alejandro. He's an extremely seductive pu... NaN NaN NaN https://twitter.com/dog_rates/status/671520732... 10 10 Alejandro doggo
2047 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Scruffers. He's being violated on mult... NaN NaN NaN https://twitter.com/dog_rates/status/671518598... 9 10 Scruffers doggo
2048 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Hammond. He's just a wee lil pup.... NaN NaN NaN https://twitter.com/dog_rates/status/671511350... 8 10 Hammond doggo
2049 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He was just informed that dog... NaN NaN NaN https://twitter.com/dog_rates/status/671504605... 11 10 Charlie doggo
2050 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Pip. He is a ship captain. Many years ... NaN NaN NaN https://twitter.com/dog_rates/status/671497587... 11 10 Pip doggo
2051 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Julius. He's a cool dog. Carries seash... NaN NaN NaN https://twitter.com/dog_rates/status/671488513... 8 10 Julius doggo
2052 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He just saw a spider. 10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671486386... 10 10 Malcolm doggo
2053 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She is a white Macadamias Duode... NaN NaN NaN https://twitter.com/dog_rates/status/671485057... 11 10 Penelope doggo
2054 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" r... Striped dog here. Having fun playing on back. ... NaN NaN NaN https://twitter.com/dog_rates/status/671390180... 7 10 None doggo
2055 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Tanner. He accidentally dropped all hi... NaN NaN NaN https://twitter.com/dog_rates/status/671362598... 11 10 Tanner doggo
2056 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" r... Tfw she says hello from the other side. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671357843... 9 10 None doggo
2057 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. He's a Petrarch Sunni Pinto. Well... NaN NaN NaN https://twitter.com/dog_rates/status/671355857... 10 10 Lou doggo
2058 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She was not fully prepared for t... NaN NaN NaN https://twitter.com/dog_rates/status/671347597... 9 10 Lola doggo
2059 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Sparky. That's his pancake now. He wil... NaN NaN NaN https://twitter.com/dog_rates/status/671186162... 10 10 Sparky doggo
2060 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" r... This pup holds the secrets of the universe in ... NaN NaN NaN https://twitter.com/dog_rates/status/671182547... 12 10 None doggo
2061 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. It's his first day of potty trai... NaN NaN NaN https://twitter.com/dog_rates/status/671166507... 10 10 Herm doggo
2062 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" r... Pack of horned dogs here. Very team-oriented b... NaN NaN NaN https://twitter.com/dog_rates/status/671163268... 8 10 None doggo
2063 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Anthony. He just finished up his maste... NaN NaN NaN https://twitter.com/dog_rates/status/671159727... 5 10 Anthony doggo
2064 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Holly. She's trying to teach small human-... NaN NaN NaN https://twitter.com/dog_rates/status/671154572... 11 10 Holly doggo
2065 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" r... *struggling to breathe properly* 12/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/671151324... 12 10 None doggo
2066 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" r... This is a Helvetica Listerine named Rufus. Thi... NaN NaN NaN https://twitter.com/dog_rates/status/671147085... 9 10 a doggo
2067 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" r... Neat pup here. Enjoys lettuce. Long af ears. S... NaN NaN NaN https://twitter.com/dog_rates/status/671141549... 9 10 None doggo
2068 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" r... Me running from commitment. 10/10 https://t.co... NaN NaN NaN https://twitter.com/dog_rates/status/671138694... 10 10 None doggo
2069 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. He's a western Alkaline... NaN NaN NaN https://twitter.com/dog_rates/status/671134062... 8 10 Clarence doggo
2070 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" r... Two miniature golden retrievers here. Webbed p... NaN NaN NaN https://twitter.com/dog_rates/status/671122204... 4 10 None doggo
2071 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phred. He isn't steering, looking at the ... NaN NaN NaN https://twitter.com/dog_rates/status/671115716... 6 10 Phred doggo
2072 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He asked for chocolate cake for ... NaN NaN NaN https://twitter.com/dog_rates/status/671109016... 8 10 Toby doggo
2073 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle this job anymore your dogs ... NaN NaN NaN https://twitter.com/dog_rates/status/670995969... 12 10 None doggo
2074 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests... here you go.\n\nGood... NaN NaN NaN https://twitter.com/dog_rates/status/670842764... 420 10 None doggo
2075 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Colby. He's that one cool friend that get... NaN NaN NaN https://twitter.com/dog_rates/status/670840546... 10 10 Colby doggo
2076 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" r... Pink dogs here. Unreasonably long necks. Left ... NaN NaN NaN https://twitter.com/dog_rates/status/670838202... 4 10 None doggo
2077 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jett. He is unimpressed by flower. 7/1... NaN NaN NaN https://twitter.com/dog_rates/status/670833812... 7 10 Jett doggo
2078 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Amy. She is Queen Starburst. 10/10 une... NaN NaN NaN https://twitter.com/dog_rates/status/670832455... 10 10 Amy doggo
2079 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" r... Scary dog here. Too many legs. Extra tail. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670826280... 2 10 None doggo
2080 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He's a man dime. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/670823764... 12 10 Remington doggo
2081 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" r... Can't do better than this lol. 10/10 for the o... NaN NaN NaN https://twitter.com/dog_rates/status/670822709... 10 10 None doggo
2082 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Sage. He likes to burn shit. 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/670815497... 10 10 Sage doggo
2083 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She enjoys her stick in the yard.... NaN NaN NaN https://twitter.com/dog_rates/status/670811965... 10 10 Maggie doggo
2084 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Andy. He can balance on one foot,... NaN NaN NaN https://twitter.com/dog_rates/status/670807719... 11 10 Andy doggo
2085 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Mason. He's a total frat boy. Pretends to... NaN NaN NaN https://twitter.com/dog_rates/status/670804601... 10 10 Mason doggo
2086 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" r... I would do radical things in the name of Dog G... NaN NaN NaN https://twitter.com/dog_rates/status/670803562... 10 10 None doggo
2087 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Trigger. He was minding his own busine... NaN NaN NaN https://twitter.com/dog_rates/status/670797304... 11 10 Trigger doggo
2088 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Antony. He's a Sheraton Tetrahedron. S... NaN NaN NaN https://twitter.com/dog_rates/status/670792680... 7 10 Antony doggo
2089 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" r... Two obedient dogs here. Left one has extra leg... NaN NaN NaN https://twitter.com/dog_rates/status/670789397... 9 10 None doggo
2090 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Creg. You offered him a ride to work b... NaN NaN NaN https://twitter.com/dog_rates/status/670786190... 8 10 Creg doggo
2091 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" r... Flamboyant pup here. Probably poisonous. Won't... NaN NaN NaN https://twitter.com/dog_rates/status/670783437... 1 10 None doggo
2092 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This dude slaps your girl's ass what do you do... NaN NaN NaN https://twitter.com/dog_rates/status/670782429... 5 10 None doggo
2093 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Traviss. He has no ears. Two rare dogs... NaN NaN NaN https://twitter.com/dog_rates/status/670780561... 7 10 Traviss doggo
2094 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... "To bone or not to bone?"\n10/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/670778058... 10 10 None doggo
2095 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vincent. He's a wild Adderall Cayenne. Sh... NaN NaN NaN https://twitter.com/dog_rates/status/670764103... 10 10 Vincent doggo
2096 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gin &amp; Tonic. They're having a... NaN NaN NaN https://twitter.com/dog_rates/status/670755717... 9 10 Gin doggo
2097 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a great listener. Low main... NaN NaN NaN https://twitter.com/dog_rates/status/670733412... 8 10 Jerry doggo
2098 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrie. He's a handheld pup. Excellen... NaN NaN NaN https://twitter.com/dog_rates/status/670727704... 10 10 Jeffrie doggo
2099 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" r... *screams for a little bit and then crumples to... NaN NaN NaN https://twitter.com/dog_rates/status/670717338... 12 10 None doggo
2100 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Danny. He's too good to look at the road ... NaN NaN NaN https://twitter.com/dog_rates/status/670704688... 6 10 Danny doggo
2101 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ester. He has a cocaine problem. This ... NaN NaN NaN https://twitter.com/dog_rates/status/670691627... 8 10 Ester doggo
2102 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... NaN NaN NaN https://twitter.com/dog_rates/status/670679630... 8 10 Pluto doggo
2103 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/670676092... 8 10 Bloo doggo
2104 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... NaN NaN NaN https://twitter.com/dog_rates/status/670668383... 10 10 Phineas doggo
2105 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... NaN NaN NaN https://twitter.com/dog_rates/status/670474236... 10 10 None doggo
2106 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... NaN NaN NaN https://twitter.com/dog_rates/status/670468609... 10 10 Edd doggo
2107 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... NaN NaN NaN https://twitter.com/dog_rates/status/670465786... 7 10 None doggo
2108 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/670452855... 11 10 None doggo
2109 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... 5 10 None doggo
2110 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/670444955... 10 10 Paull doggo
2111 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... NaN NaN NaN https://twitter.com/dog_rates/status/670442337... 11 10 Koda doggo
2112 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... NaN NaN NaN https://twitter.com/dog_rates/status/670435821... 10 10 None doggo
2113 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... NaN NaN NaN https://twitter.com/dog_rates/status/670434127... 11 10 Hank doggo
2114 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... NaN NaN NaN https://twitter.com/dog_rates/status/670433248... 10 10 Sam doggo
2115 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/670428280... 11 10 Willy doggo
2116 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... NaN NaN NaN https://twitter.com/dog_rates/status/670427002... 9 10 a doggo
2117 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925... 12 10 Herb doggo
2118 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... NaN NaN NaN https://twitter.com/dog_rates/status/670420569... 10 10 Damon doggo
2119 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670417414... 6 10 None doggo
2120 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... NaN NaN NaN https://twitter.com/dog_rates/status/670411370... 12 10 Scooter doggo
2121 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... NaN NaN NaN https://twitter.com/dog_rates/status/670408998... 10 10 Peanut doggo
2122 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... NaN NaN NaN https://twitter.com/dog_rates/status/670403879... 10 10 Nigel doggo
2123 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... NaN NaN NaN https://twitter.com/dog_rates/status/670385711... 8 10 Larry doggo
2124 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... NaN NaN NaN https://twitter.com/dog_rates/status/670374371... 12 10 Daisy doggo
2125 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... NaN NaN NaN https://twitter.com/dog_rates/status/670361874... 9 10 a doggo
2126 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... NaN NaN NaN https://twitter.com/dog_rates/status/670338931... 10 10 Butters doggo
2127 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... NaN NaN NaN https://twitter.com/dog_rates/status/670319130... 11 10 None doggo
2128 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... NaN NaN NaN https://twitter.com/dog_rates/status/670303360... 9 10 a doggo
2129 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... NaN NaN NaN https://twitter.com/dog_rates/status/670290420... 11 10 Sandra doggo
2130 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... NaN NaN NaN https://twitter.com/dog_rates/status/670093938... 9 10 Wally doggo
2131 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... NaN NaN NaN https://twitter.com/dog_rates/status/670086499... 10 10 None doggo
2132 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... NaN NaN NaN https://twitter.com/dog_rates/status/670079681... 10 10 Fabio doggo
2133 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/670073503... 10 10 Winston doggo
2134 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... NaN NaN NaN https://twitter.com/dog_rates/status/670069087... 5 10 Randall doggo
2135 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... NaN NaN NaN https://twitter.com/dog_rates/status/670061506... 11 10 Liam doggo
2136 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... NaN NaN NaN https://twitter.com/dog_rates/status/670055038... 3 10 Tommy doggo
2137 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... NaN NaN NaN https://twitter.com/dog_rates/status/670046952... 11 10 Ben doggo
2138 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/670040295... 10 10 None doggo
2139 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/670037189... 5 10 None doggo
2140 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... NaN NaN NaN https://twitter.com/dog_rates/status/670003130... 10 10 Raphael doggo
2141 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... NaN NaN NaN https://twitter.com/dog_rates/status/669993076... 9 10 Zoey doggo
2142 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... NaN NaN NaN https://twitter.com/dog_rates/status/669972011... 10 10 None doggo
2143 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... NaN NaN NaN https://twitter.com/dog_rates/status/669970042... 10 10 Julio doggo
2144 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... NaN NaN NaN https://twitter.com/dog_rates/status/669942763... 11 10 Andru doggo
2145 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... NaN NaN NaN https://twitter.com/dog_rates/status/669926384... 12 10 None doggo
2146 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... NaN NaN NaN https://twitter.com/dog_rates/status/669923323... 10 10 a doggo
2147 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... NaN NaN NaN https://twitter.com/dog_rates/status/669753178... 10 10 Chester doggo
2148 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... NaN NaN NaN https://twitter.com/dog_rates/status/669749430... 8 10 Clarence doggo
2149 669684865554620416 6.693544e+17 4.196984e+09 2015-11-26 01:11:28 +0000 <a href="http://twitter.com/download/iphone" r... After countless hours of research and hundreds... NaN NaN NaN NaN 11 10 None doggo
2150 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/669683899... 10 10 Kloey doggo
2151 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... NaN NaN NaN https://twitter.com/dog_rates/status/669682095... 9 10 Louie doggo
2152 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... NaN NaN NaN https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn doggo
2153 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... NaN NaN NaN https://twitter.com/dog_rates/status/669661792... 5 10 a doggo
2154 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... NaN NaN NaN https://twitter.com/dog_rates/status/669625907... 12 10 Penny doggo
2155 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... NaN NaN NaN https://twitter.com/dog_rates/status/669603084... 10 10 None doggo
2156 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... NaN NaN NaN https://twitter.com/dog_rates/status/669597912... 10 10 Skye doggo
2157 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... NaN NaN NaN https://twitter.com/dog_rates/status/669583744... 6 10 None doggo
2158 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... NaN NaN NaN https://twitter.com/dog_rates/status/669573570... 10 10 Linda doggo
2159 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... NaN NaN NaN https://twitter.com/dog_rates/status/669571471... 7 10 Keith doggo
2160 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... NaN NaN NaN https://twitter.com/dog_rates/status/669567591... 9 10 Kollin doggo
2161 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... NaN NaN NaN https://twitter.com/dog_rates/status/669564461... 10 10 a doggo
2162 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... NaN NaN NaN https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh doggo
2163 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... NaN NaN NaN https://twitter.com/dog_rates/status/669375718... 6 10 Billl doggo
2164 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... NaN NaN NaN https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér doggo
2165 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... NaN NaN NaN https://twitter.com/dog_rates/status/669367896... 10 10 Chip doggo
2166 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... NaN NaN NaN https://twitter.com/dog_rates/status/669363888... 10 10 None doggo
2167 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... NaN NaN NaN https://twitter.com/dog_rates/status/669359674... 11 10 Saydee doggo
2168 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/669354382... 8 10 Dug doggo
2169 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... NaN NaN NaN https://twitter.com/dog_rates/status/669353438... 10 10 Tessa doggo
2170 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/669351434... 10 10 Sully doggo
2171 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... NaN NaN NaN https://twitter.com/dog_rates/status/669328503... 12 10 Kirk doggo
2172 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... NaN NaN NaN https://twitter.com/dog_rates/status/669327207... 13 10 None doggo
2173 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/669324657... 11 10 Ralf doggo
2174 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... NaN NaN NaN https://twitter.com/dog_rates/status/669216679... 8 10 Clarq doggo
2175 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... NaN NaN NaN https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers doggo
2176 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... NaN NaN NaN https://twitter.com/dog_rates/status/669203728... 9 10 Samsom doggo
2177 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... NaN NaN NaN https://twitter.com/dog_rates/status/669037058... 10 10 None doggo
2178 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... NaN NaN NaN https://twitter.com/dog_rates/status/669015743... 10 10 None doggo
2179 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... NaN NaN NaN https://twitter.com/dog_rates/status/669006782... 12 10 Tucker doggo
2180 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... NaN NaN NaN https://twitter.com/dog_rates/status/669000397... 11 10 Terrance doggo
2181 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... NaN NaN NaN https://twitter.com/dog_rates/status/668994913... 5 10 None doggo
2182 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... NaN NaN NaN https://twitter.com/dog_rates/status/668992363... 8 10 Harrison doggo
2183 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... NaN NaN NaN https://twitter.com/dog_rates/status/668989615... 3 10 Bernie doggo
2184 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... NaN NaN NaN https://twitter.com/dog_rates/status/668988183... 7 10 None doggo
2185 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... NaN NaN NaN https://twitter.com/dog_rates/status/668986018... 9 10 Ruby doggo
2186 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... NaN NaN NaN https://twitter.com/dog_rates/status/668981893... 4 10 None doggo
2187 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... NaN NaN NaN https://twitter.com/dog_rates/status/668979806... 12 10 Chaz doggo
2188 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... NaN NaN NaN https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy doggo
2189 668967877119254528 6.689207e+17 2.143566e+07 2015-11-24 01:42:25 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 good shit Bubka\n@wane15 NaN NaN NaN NaN 12 10 None doggo
2190 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... NaN NaN NaN https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob doggo
2191 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... NaN NaN NaN https://twitter.com/dog_rates/status/668955713... 10 10 a doggo
2192 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... NaN NaN NaN https://twitter.com/dog_rates/status/668932921... 9 10 Herald doggo
2193 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... NaN NaN NaN https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau doggo
2194 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... NaN NaN NaN https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles doggo
2195 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... NaN NaN NaN https://twitter.com/dog_rates/status/668872652... 11 10 Amélie doggo
2196 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... NaN NaN NaN https://twitter.com/dog_rates/status/668852170... 11 10 Bobb doggo
2197 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... NaN NaN NaN https://twitter.com/dog_rates/status/668826086... 10 10 Banditt doggo
2198 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... NaN NaN NaN https://twitter.com/dog_rates/status/668815180... 7 10 a doggo
2199 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... NaN NaN NaN https://twitter.com/dog_rates/status/668779399... 10 10 Kevon doggo
2200 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... NaN NaN NaN https://twitter.com/dog_rates/status/668655139... 11 10 Winifred doggo
2201 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... NaN NaN NaN https://twitter.com/dog_rates/status/668645506... 11 10 None doggo
2202 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... NaN NaN NaN https://twitter.com/dog_rates/status/668643542... 3 10 None doggo
2203 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668641109... 10 10 Hanz doggo
2204 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... NaN NaN NaN https://twitter.com/dog_rates/status/668636665... 10 10 an doggo
2205 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668633411... 10 10 Churlie doggo
2206 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... NaN NaN NaN https://twitter.com/dog_rates/status/668631377... 5 10 Zeek doggo
2207 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... NaN NaN NaN https://twitter.com/dog_rates/status/668627278... 9 10 Timofy doggo
2208 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... NaN NaN NaN https://twitter.com/dog_rates/status/668625577... 10 10 Maks doggo
2209 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... NaN NaN NaN https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan doggo
2210 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... NaN NaN NaN https://twitter.com/dog_rates/status/668620235... 10 10 Kallie doggo
2211 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... NaN NaN NaN https://twitter.com/dog_rates/status/668614819... 7 10 a doggo
2212 668587383441514497 NaN NaN 2015-11-23 00:30:28 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Never forget this vine. You will not stop watc... NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 13 10 the doggo
2213 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... NaN NaN NaN https://twitter.com/dog_rates/status/668567822... 11 10 Marvin doggo
2214 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... NaN NaN NaN https://twitter.com/dog_rates/status/668544745... 10 10 None doggo
2215 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... NaN NaN NaN https://twitter.com/dog_rates/status/668542336... 10 10 None doggo
2216 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... NaN NaN NaN https://twitter.com/dog_rates/status/668537837... 8 10 Spark doggo
2217 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... NaN NaN NaN https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón doggo
2218 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... NaN NaN NaN https://twitter.com/dog_rates/status/668507509... 10 10 a doggo
2219 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... NaN NaN NaN https://twitter.com/dog_rates/status/668496999... 8 10 Jo doggo
2220 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... NaN NaN NaN https://twitter.com/dog_rates/status/668484198... 9 10 None doggo
2221 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... NaN NaN NaN https://twitter.com/dog_rates/status/668480044... 11 10 DayZ doggo
2222 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/668466899... 4 10 a doggo
2223 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... NaN NaN NaN https://twitter.com/dog_rates/status/668297328... 9 10 None doggo
2224 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/668291999... 10 10 None doggo
2225 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... NaN NaN NaN https://twitter.com/dog_rates/status/668286279... 11 10 Rusty doggo
2226 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... NaN NaN NaN https://twitter.com/dog_rates/status/668274247... 10 10 Sophie doggo
2227 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... NaN NaN NaN https://twitter.com/dog_rates/status/668268907... 10 10 None doggo
2228 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... NaN NaN NaN https://twitter.com/dog_rates/status/668256321... 13 10 Jareld doggo
2229 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... NaN NaN NaN https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick doggo
2230 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... NaN NaN NaN https://twitter.com/dog_rates/status/668237644... 10 10 Torque doggo
2231 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/668226093... 10 10 None doggo
2232 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... NaN NaN NaN https://twitter.com/dog_rates/status/668221241... 10 10 None doggo
2233 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... NaN NaN NaN https://twitter.com/dog_rates/status/668204964... 8 10 Ron doggo
2234 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... NaN NaN NaN https://twitter.com/dog_rates/status/668190681... 12 10 Skittles doggo
2235 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... NaN NaN NaN https://twitter.com/dog_rates/status/668171859... 7 10 a doggo
2236 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... NaN NaN NaN https://twitter.com/dog_rates/status/668154635... 9 10 None doggo
2237 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... NaN NaN NaN https://twitter.com/dog_rates/status/668142349... 2 10 None doggo
2238 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... NaN NaN NaN https://twitter.com/dog_rates/status/668113020... 6 10 Alfie doggo
2239 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None doggo
2240 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... NaN NaN NaN https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy doggo
2241 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... NaN NaN NaN https://twitter.com/dog_rates/status/667915453... 10 10 Otis doggo
2242 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... NaN NaN NaN https://twitter.com/dog_rates/status/667911425... 5 10 None doggo
2243 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... NaN NaN NaN https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia doggo
2244 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... NaN NaN NaN https://twitter.com/dog_rates/status/667886921... 11 10 Erik doggo
2245 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... NaN NaN NaN https://twitter.com/dog_rates/status/667885044... 10 10 Stu doggo
2246 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... NaN NaN NaN https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick doggo
2247 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... NaN NaN NaN https://twitter.com/dog_rates/status/667873844... 10 10 None doggo
2248 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... NaN NaN NaN https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy doggo
2249 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... NaN NaN NaN https://twitter.com/dog_rates/status/667861340... 9 10 a doggo
2250 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... NaN NaN NaN https://twitter.com/dog_rates/status/667832474... 12 10 None doggo
2251 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... NaN NaN NaN https://twitter.com/dog_rates/status/667806454... 10 10 Filup doggo
2252 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013... 12 10 None doggo
2253 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... NaN NaN NaN https://twitter.com/dog_rates/status/667793409... 8 10 None doggo
2254 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... NaN NaN NaN https://twitter.com/dog_rates/status/667782464... 9 10 None doggo
2255 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... NaN NaN NaN https://twitter.com/dog_rates/status/667773195... 8 10 a doggo
2256 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... NaN NaN NaN https://twitter.com/dog_rates/status/667766675... 9 10 Calvin doggo
2257 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... NaN NaN NaN https://twitter.com/dog_rates/status/667728196... 11 10 Olive doggo
2258 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... NaN NaN NaN https://twitter.com/dog_rates/status/667724302... 7 10 None doggo
2259 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667... 12 10 None doggo
2260 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667... 5 10 None doggo
2261 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... NaN NaN NaN https://twitter.com/dog_rates/status/667549055... 1 10 None doggo
2262 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/667546741... 9 10 George doggo
2263 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... NaN NaN NaN https://twitter.com/dog_rates/status/667544320... 10 10 Kial doggo
2264 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... NaN NaN NaN https://twitter.com/dog_rates/status/667538891... 9 10 a doggo
2265 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... NaN NaN NaN https://twitter.com/dog_rates/status/667534815... 8 10 Frank doggo
2266 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... NaN NaN NaN https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel doggo
2267 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... NaN NaN NaN https://twitter.com/dog_rates/status/667524857... 12 10 None doggo
2268 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... NaN NaN NaN https://twitter.com/dog_rates/status/667517642... 8 10 Dook doggo
2269 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... NaN NaN NaN https://twitter.com/dog_rates/status/667509364... 12 10 None doggo
2270 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... NaN NaN NaN https://twitter.com/dog_rates/status/667502640... 11 10 Hall doggo
2271 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... NaN NaN NaN https://twitter.com/dog_rates/status/667495797... 9 10 Philippe doggo
2272 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... NaN NaN NaN https://twitter.com/dog_rates/status/667491009... 7 10 None doggo
2273 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... NaN NaN NaN https://twitter.com/dog_rates/status/667470559... 11 10 a doggo
2274 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... NaN NaN NaN https://twitter.com/dog_rates/status/667455448... 7 10 Reese doggo
2275 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... NaN NaN NaN https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake doggo
2276 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... NaN NaN NaN https://twitter.com/dog_rates/status/667443425... 6 10 None doggo
2277 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... NaN NaN NaN https://twitter.com/dog_rates/status/667437278... 10 10 None doggo
2278 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689... 12 10 None doggo
2279 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/667405339... 7 10 Biden doggo
2280 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... NaN NaN NaN https://twitter.com/dog_rates/status/667393430... 8 10 Fwed doggo
2281 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... NaN NaN NaN https://twitter.com/dog_rates/status/667369227... 10 10 None doggo
2282 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... NaN NaN NaN https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve doggo
2283 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... NaN NaN NaN https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa doggo
2284 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... NaN NaN NaN https://twitter.com/dog_rates/status/667192066... 12 10 None doggo
2285 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... NaN NaN NaN https://twitter.com/dog_rates/status/667188689... 10 10 None doggo
2286 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... 10 10 Timison doggo
2287 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... NaN NaN NaN https://twitter.com/dog_rates/status/667177989... 8 10 a doggo
2288 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... NaN NaN NaN https://twitter.com/dog_rates/status/667176164... 4 10 None doggo
2289 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... NaN NaN NaN https://twitter.com/dog_rates/status/667174963... 9 10 Clarence doggo
2290 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... NaN NaN NaN https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth doggo
2291 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... NaN NaN NaN https://twitter.com/dog_rates/status/667165590... 10 10 Churlie doggo
2292 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... NaN NaN NaN https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay doggo
2293 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... NaN NaN NaN https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy doggo
2294 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... NaN NaN NaN https://twitter.com/dog_rates/status/667138269... 10 10 None doggo
2295 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... NaN NaN NaN https://twitter.com/dog_rates/status/667119796... 10 10 Gabe doggo
2296 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... NaN NaN NaN https://twitter.com/dog_rates/status/667090893... 7 10 Clybe doggo
2297 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... NaN NaN NaN https://twitter.com/dog_rates/status/667073648... 10 10 Dave doggo
2298 667070482143944705 6.670655e+17 4.196984e+09 2015-11-18 20:02:51 +0000 <a href="http://twitter.com/download/iphone" r... After much debate this dog is being upgraded t... NaN NaN NaN NaN 10 10 None doggo
2299 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... NaN NaN NaN https://twitter.com/dog_rates/status/667065535... 8 10 None doggo
2300 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... NaN NaN NaN https://twitter.com/dog_rates/status/667062181... 10 10 Keet doggo
2301 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094... 12 10 None doggo
2302 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... NaN NaN NaN https://twitter.com/dog_rates/status/667012601... 9 10 Klevin doggo
2303 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... NaN NaN NaN https://twitter.com/dog_rates/status/666996132... 10 10 Carll doggo
2304 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... NaN NaN NaN https://twitter.com/dog_rates/status/666983947... 11 10 a doggo
2305 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... NaN NaN NaN https://twitter.com/dog_rates/status/666837028... 3 10 None doggo
2306 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... NaN NaN NaN https://twitter.com/dog_rates/status/666835007... 10 10 None doggo
2307 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... NaN NaN NaN https://twitter.com/dog_rates/status/666826780... 12 10 None doggo
2308 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... NaN NaN NaN https://twitter.com/dog_rates/status/666817836... 9 10 Jeph doggo
2309 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... NaN NaN NaN https://twitter.com/dog_rates/status/666804364... 8 10 Jockson doggo
2310 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... NaN NaN NaN https://twitter.com/dog_rates/status/666786068... 2 10 None doggo
2311 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/666781792... 10 10 a doggo
2312 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666776908... 5 10 Josep doggo
2313 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... NaN NaN NaN https://twitter.com/dog_rates/status/666739327... 10 10 Lugan doggo
2314 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... NaN NaN NaN https://twitter.com/dog_rates/status/666701168... 8 10 a doggo
2315 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... NaN NaN NaN https://twitter.com/dog_rates/status/666691418... 8 10 Christoper doggo
2316 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/666649482... 4 10 None doggo
2317 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy doggo
2318 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... NaN NaN NaN https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory doggo
2319 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... NaN NaN NaN https://twitter.com/dog_rates/status/666447344... 9 10 Scout doggo
2320 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... NaN NaN NaN https://twitter.com/dog_rates/status/666437273... 7 10 None doggo
2321 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... NaN NaN NaN https://twitter.com/dog_rates/status/666435652... 10 10 None doggo
2322 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... NaN NaN NaN https://twitter.com/dog_rates/status/666430724... 6 10 None doggo
2323 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... NaN NaN NaN https://twitter.com/dog_rates/status/666428276... 7 10 None doggo
2324 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... NaN NaN NaN https://twitter.com/dog_rates/status/666421158... 12 10 None doggo
2325 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/666418789... 10 10 Walter doggo
2326 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... NaN NaN NaN https://twitter.com/dog_rates/status/666411507... 2 10 quite doggo
2327 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... NaN NaN NaN https://twitter.com/dog_rates/status/666407126... 7 10 a doggo
2328 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... NaN NaN NaN https://twitter.com/dog_rates/status/666396247... 9 10 None doggo
2329 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/666373753... 11 10 None doggo
2330 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... NaN NaN NaN https://twitter.com/dog_rates/status/666362758... 6 10 None doggo
2331 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... NaN NaN NaN https://twitter.com/dog_rates/status/666353288... 8 10 None doggo
2332 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... NaN NaN NaN https://twitter.com/dog_rates/status/666345417... 10 10 None doggo
2333 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... NaN NaN NaN https://twitter.com/dog_rates/status/666337882... 9 10 an doggo
2334 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... NaN NaN NaN https://twitter.com/dog_rates/status/666293911... 3 10 a doggo
2335 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... NaN NaN NaN https://twitter.com/dog_rates/status/666287406... 1 2 an doggo
2336 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097... 11 10 None doggo
2337 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... NaN NaN NaN https://twitter.com/dog_rates/status/666268910... 10 10 None doggo
2338 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... NaN NaN NaN https://twitter.com/dog_rates/status/666104133... 1 10 None doggo
2339 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... NaN NaN NaN https://twitter.com/dog_rates/status/666102155... 11 10 None doggo
2340 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... NaN NaN NaN https://twitter.com/dog_rates/status/666099513... 8 10 None doggo
2341 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... NaN NaN NaN https://twitter.com/dog_rates/status/666094000... 9 10 None doggo
2342 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... NaN NaN NaN https://twitter.com/dog_rates/status/666082916... 6 10 None doggo
2343 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... NaN NaN NaN https://twitter.com/dog_rates/status/666073100... 10 10 None doggo
2344 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... NaN NaN NaN https://twitter.com/dog_rates/status/666071193... 9 10 None doggo
2345 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/666063827... 10 10 the doggo
2346 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... NaN NaN NaN https://twitter.com/dog_rates/status/666058600... 8 10 the doggo
2347 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... NaN NaN NaN https://twitter.com/dog_rates/status/666057090... 9 10 a doggo
2348 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... NaN NaN NaN https://twitter.com/dog_rates/status/666055525... 10 10 a doggo
2349 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... NaN NaN NaN https://twitter.com/dog_rates/status/666051853... 2 10 an doggo
2350 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... NaN NaN NaN https://twitter.com/dog_rates/status/666050758... 10 10 a doggo
2351 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None doggo
2352 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a doggo
2353 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a doggo
2354 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a doggo
2355 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None doggo

2356 rows × 14 columns

image_df and tweet_json_clean should be part of archive_clean table

Define

  • Merge image_df and tweet_json_clean with archive_clean

Code

In [44]:
main_df =  pd.merge(archive_clean, image_df_clean,
                            on=['tweet_id'], how='inner')
main_df =  pd.merge(main_df, tweet_json_clean,
                            on=['tweet_id'], how='inner')

Test

In [45]:
pd.set_option('display.max_columns',1000)
main_df.head()
Out[45]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
1 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
2 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
3 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
4 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
In [46]:
main_df[main_df.tweet_id.duplicated()]
Out[46]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
1 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
2 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
3 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
5 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly floofer https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
6 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly pupper https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
7 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly puppo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
9 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie floofer https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
10 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie pupper https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
11 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie puppo https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
13 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla floofer https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
14 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla pupper https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
15 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla puppo https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
17 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin floofer https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
18 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin pupper https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
19 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin puppo https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
21 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None floofer https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
22 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None pupper https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
23 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None puppo https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
25 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax floofer https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
26 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax pupper https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
27 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax puppo https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
29 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None floofer https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
30 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None pupper https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
31 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None puppo https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
33 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey floofer https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
34 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey pupper https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
35 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey puppo https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
37 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie floofer https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
38 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie pupper https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
39 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie puppo https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
41 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda floofer https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
42 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda pupper https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
43 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda puppo https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
45 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno floofer https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
46 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno pupper https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
47 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno puppo https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
49 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None floofer https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
50 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None pupper https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
51 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None puppo https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
53 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted floofer https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
54 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted pupper https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
55 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted puppo https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
57 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart floofer https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
58 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart pupper https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
59 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart puppo https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
61 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver floofer https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
62 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver pupper https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
63 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver puppo https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
65 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim floofer https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
66 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim pupper https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
67 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim puppo https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
69 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke floofer https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
70 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke pupper https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
71 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke puppo https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
73 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus floofer https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
74 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus pupper https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
75 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus puppo https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
77 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... NaN NaN NaN https://twitter.com/dog_rates/status/888078434... 12 10 Gerald floofer https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
78 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... NaN NaN NaN https://twitter.com/dog_rates/status/888078434... 12 10 Gerald pupper https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
79 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... NaN NaN NaN https://twitter.com/dog_rates/status/888078434... 12 10 Gerald puppo https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
81 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... NaN NaN NaN https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey floofer https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
82 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... NaN NaN NaN https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey pupper https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
83 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... NaN NaN NaN https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey puppo https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
85 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... NaN NaN NaN https://twitter.com/dog_rates/status/887517139... 14 10 such floofer https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
86 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... NaN NaN NaN https://twitter.com/dog_rates/status/887517139... 14 10 such pupper https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
87 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... NaN NaN NaN https://twitter.com/dog_rates/status/887517139... 14 10 such puppo https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
89 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... NaN NaN NaN https://twitter.com/dog_rates/status/887473957... 13 10 Canela floofer https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
90 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... NaN NaN NaN https://twitter.com/dog_rates/status/887473957... 13 10 Canela pupper https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
91 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... NaN NaN NaN https://twitter.com/dog_rates/status/887473957... 13 10 Canela puppo https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
93 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... NaN NaN NaN https://twitter.com/dog_rates/status/887343217... 13 10 None floofer https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
94 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... NaN NaN NaN https://twitter.com/dog_rates/status/887343217... 13 10 None pupper https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
95 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... NaN NaN NaN https://twitter.com/dog_rates/status/887343217... 13 10 None puppo https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
97 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... NaN NaN NaN https://twitter.com/dog_rates/status/887101392... 12 10 None floofer https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
98 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... NaN NaN NaN https://twitter.com/dog_rates/status/887101392... 12 10 None pupper https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
99 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... NaN NaN NaN https://twitter.com/dog_rates/status/887101392... 12 10 None puppo https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
101 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... NaN NaN NaN https://twitter.com/dog_rates/status/886983233... 13 10 Maya floofer https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
102 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... NaN NaN NaN https://twitter.com/dog_rates/status/886983233... 13 10 Maya pupper https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
103 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... NaN NaN NaN https://twitter.com/dog_rates/status/886983233... 13 10 Maya puppo https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
105 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... NaN NaN NaN https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus floofer https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
106 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... NaN NaN NaN https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus pupper https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
107 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... NaN NaN NaN https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus puppo https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
109 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... NaN NaN NaN https://twitter.com/dog_rates/status/886680336... 13 10 Derek floofer https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
110 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... NaN NaN NaN https://twitter.com/dog_rates/status/886680336... 13 10 Derek pupper https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
111 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... NaN NaN NaN https://twitter.com/dog_rates/status/886680336... 13 10 Derek puppo https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
113 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... NaN NaN NaN https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe floofer https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
114 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... NaN NaN NaN https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe pupper https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
115 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... NaN NaN NaN https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe puppo https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
117 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... NaN NaN NaN https://twitter.com/dog_rates/status/886258384... 13 10 Waffles floofer https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
118 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... NaN NaN NaN https://twitter.com/dog_rates/status/886258384... 13 10 Waffles pupper https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
119 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... NaN NaN NaN https://twitter.com/dog_rates/status/886258384... 13 10 Waffles puppo https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
121 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... NaN NaN NaN https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo floofer https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
122 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... NaN NaN NaN https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo pupper https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
123 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... NaN NaN NaN https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo puppo https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
125 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... NaN NaN NaN https://twitter.com/dog_rates/status/885528943... 13 10 Maisey floofer https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
126 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... NaN NaN NaN https://twitter.com/dog_rates/status/885528943... 13 10 Maisey pupper https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
127 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... NaN NaN NaN https://twitter.com/dog_rates/status/885528943... 13 10 Maisey puppo https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
129 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320... 13 10 Lilly floofer https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
130 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320... 13 10 Lilly pupper https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
131 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320... 13 10 Lilly puppo https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
133 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... NaN NaN NaN https://twitter.com/dog_rates/status/885167619... 13 10 None floofer https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
134 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... NaN NaN NaN https://twitter.com/dog_rates/status/885167619... 13 10 None pupper https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
135 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... NaN NaN NaN https://twitter.com/dog_rates/status/885167619... 13 10 None puppo https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
137 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... NaN NaN NaN https://twitter.com/dog_rates/status/884925521... 12 10 Earl floofer https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
138 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... NaN NaN NaN https://twitter.com/dog_rates/status/884925521... 12 10 Earl pupper https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
139 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... NaN NaN NaN https://twitter.com/dog_rates/status/884925521... 12 10 Earl puppo https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
141 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... NaN NaN NaN https://twitter.com/dog_rates/status/884876753... 13 10 Lola floofer https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
142 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... NaN NaN NaN https://twitter.com/dog_rates/status/884876753... 13 10 Lola pupper https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
143 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... NaN NaN NaN https://twitter.com/dog_rates/status/884876753... 13 10 Lola puppo https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
145 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... NaN NaN NaN https://twitter.com/dog_rates/status/884562892... 13 10 Kevin floofer https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
146 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... NaN NaN NaN https://twitter.com/dog_rates/status/884562892... 13 10 Kevin pupper https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
147 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... NaN NaN NaN https://twitter.com/dog_rates/status/884562892... 13 10 Kevin puppo https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
149 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... NaN NaN NaN https://twitter.com/dog_rates/status/884441805... 14 10 None floofer https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
150 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... NaN NaN NaN https://twitter.com/dog_rates/status/884441805... 14 10 None pupper https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
151 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... NaN NaN NaN https://twitter.com/dog_rates/status/884441805... 14 10 None puppo https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
153 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... NaN NaN NaN https://twitter.com/dog_rates/status/884162670... 12 10 Yogi floofer https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
154 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... NaN NaN NaN https://twitter.com/dog_rates/status/884162670... 12 10 Yogi pupper https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
155 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... NaN NaN NaN https://twitter.com/dog_rates/status/884162670... 12 10 Yogi puppo https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
157 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... NaN NaN NaN https://twitter.com/dog_rates/status/883838122... 12 10 Noah floofer https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
158 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... NaN NaN NaN https://twitter.com/dog_rates/status/883838122... 12 10 Noah pupper https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
159 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... NaN NaN NaN https://twitter.com/dog_rates/status/883838122... 12 10 Noah puppo https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
161 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... NaN NaN NaN https://twitter.com/dog_rates/status/883482846... 5 10 Bella floofer https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
162 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... NaN NaN NaN https://twitter.com/dog_rates/status/883482846... 5 10 Bella pupper https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
163 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... NaN NaN NaN https://twitter.com/dog_rates/status/883482846... 5 10 Bella puppo https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
165 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... NaN NaN NaN https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald floofer https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
166 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... NaN NaN NaN https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald pupper https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
167 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... NaN NaN NaN https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald puppo https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
169 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... NaN NaN NaN https://twitter.com/dog_rates/status/883117836... 13 10 None floofer https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
170 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... NaN NaN NaN https://twitter.com/dog_rates/status/883117836... 13 10 None pupper https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
171 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... NaN NaN NaN https://twitter.com/dog_rates/status/883117836... 13 10 None puppo https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
173 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... NaN NaN NaN https://twitter.com/dog_rates/status/882992080... 13 10 Rusty floofer https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
174 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... NaN NaN NaN https://twitter.com/dog_rates/status/882992080... 13 10 Rusty pupper https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
175 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... NaN NaN NaN https://twitter.com/dog_rates/status/882992080... 13 10 Rusty puppo https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
177 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... NaN NaN NaN https://twitter.com/dog_rates/status/882762694... 12 10 Gus floofer https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
178 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... NaN NaN NaN https://twitter.com/dog_rates/status/882762694... 12 10 Gus pupper https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
179 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... NaN NaN NaN https://twitter.com/dog_rates/status/882762694... 12 10 Gus puppo https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
181 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... NaN NaN NaN https://twitter.com/dog_rates/status/882627270... 13 10 Stanley floofer https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
182 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... NaN NaN NaN https://twitter.com/dog_rates/status/882627270... 13 10 Stanley pupper https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
183 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... NaN NaN NaN https://twitter.com/dog_rates/status/882627270... 13 10 Stanley puppo https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
185 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... NaN NaN NaN https://twitter.com/dog_rates/status/882268110... 13 10 Alfy floofer https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
186 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... NaN NaN NaN https://twitter.com/dog_rates/status/882268110... 13 10 Alfy pupper https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
187 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... NaN NaN NaN https://twitter.com/dog_rates/status/882268110... 13 10 Alfy puppo https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
189 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... NaN NaN NaN https://twitter.com/dog_rates/status/882045870... 13 10 Koko floofer https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
190 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... NaN NaN NaN https://twitter.com/dog_rates/status/882045870... 13 10 Koko pupper https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
191 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... NaN NaN NaN https://twitter.com/dog_rates/status/882045870... 13 10 Koko puppo https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
193 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/881906580... 12 10 Rey floofer https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
194 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/881906580... 12 10 Rey pupper https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
195 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/881906580... 12 10 Rey puppo https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
197 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... NaN NaN NaN https://twitter.com/dog_rates/status/881666595... 13 10 Gary floofer https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
198 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... NaN NaN NaN https://twitter.com/dog_rates/status/881666595... 13 10 Gary pupper https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
199 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... NaN NaN NaN https://twitter.com/dog_rates/status/881666595... 13 10 Gary puppo https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
201 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... NaN NaN NaN https://twitter.com/dog_rates/status/881536004... 14 10 a floofer https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
202 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... NaN NaN NaN https://twitter.com/dog_rates/status/881536004... 14 10 a pupper https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
203 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... NaN NaN NaN https://twitter.com/dog_rates/status/881536004... 14 10 a puppo https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
205 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... NaN NaN NaN https://twitter.com/dog_rates/status/881268444... 12 10 Elliot floofer https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
206 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... NaN NaN NaN https://twitter.com/dog_rates/status/881268444... 12 10 Elliot pupper https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
207 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... NaN NaN NaN https://twitter.com/dog_rates/status/881268444... 12 10 Elliot puppo https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
209 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... NaN NaN NaN https://twitter.com/dog_rates/status/880935762... 13 10 Louis floofer https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
210 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... NaN NaN NaN https://twitter.com/dog_rates/status/880935762... 13 10 Louis pupper https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
211 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... NaN NaN NaN https://twitter.com/dog_rates/status/880935762... 13 10 Louis puppo https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
213 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... NaN NaN NaN https://twitter.com/dog_rates/status/880872448... 12 10 None floofer https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
214 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... NaN NaN NaN https://twitter.com/dog_rates/status/880872448... 12 10 None pupper https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
215 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... NaN NaN NaN https://twitter.com/dog_rates/status/880872448... 12 10 None puppo https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
217 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... NaN NaN NaN https://twitter.com/dog_rates/status/880465832... 12 10 Bella floofer https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
218 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... NaN NaN NaN https://twitter.com/dog_rates/status/880465832... 12 10 Bella pupper https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
219 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... NaN NaN NaN https://twitter.com/dog_rates/status/880465832... 12 10 Bella puppo https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
221 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... NaN NaN NaN https://twitter.com/dog_rates/status/880221127... 12 10 Jesse floofer https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
222 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... NaN NaN NaN https://twitter.com/dog_rates/status/880221127... 12 10 Jesse pupper https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
223 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... NaN NaN NaN https://twitter.com/dog_rates/status/880221127... 12 10 Jesse puppo https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
225 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... NaN NaN NaN https://twitter.com/dog_rates/status/880095782... 11 10 None floofer https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
226 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... NaN NaN NaN https://twitter.com/dog_rates/status/880095782... 11 10 None pupper https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
227 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... NaN NaN NaN https://twitter.com/dog_rates/status/880095782... 11 10 None puppo https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
229 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... NaN NaN NaN https://twitter.com/dog_rates/status/879862464... 13 10 Romeo floofer https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
230 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... NaN NaN NaN https://twitter.com/dog_rates/status/879862464... 13 10 Romeo pupper https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
231 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... NaN NaN NaN https://twitter.com/dog_rates/status/879862464... 13 10 Romeo puppo https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
233 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... NaN NaN NaN https://twitter.com/dog_rates/status/879492040... 12 10 Bailey floofer https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
234 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... NaN NaN NaN https://twitter.com/dog_rates/status/879492040... 12 10 Bailey pupper https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
235 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... NaN NaN NaN https://twitter.com/dog_rates/status/879492040... 12 10 Bailey puppo https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
237 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/879415818... 13 10 Duddles floofer https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
238 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/879415818... 13 10 Duddles pupper https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
239 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/879415818... 13 10 Duddles puppo https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
241 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... NaN NaN NaN https://twitter.com/dog_rates/status/879376492... 12 10 Jack floofer https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
242 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... NaN NaN NaN https://twitter.com/dog_rates/status/879376492... 12 10 Jack pupper https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
243 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... NaN NaN NaN https://twitter.com/dog_rates/status/879376492... 12 10 Jack puppo https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
245 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... NaN NaN NaN https://twitter.com/dog_rates/status/879050749... 11 10 Steven floofer https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
246 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... NaN NaN NaN https://twitter.com/dog_rates/status/879050749... 11 10 Steven pupper https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
247 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... NaN NaN NaN https://twitter.com/dog_rates/status/879050749... 11 10 Steven puppo https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
249 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... NaN NaN NaN https://twitter.com/dog_rates/status/879008229... 13 10 Beau floofer https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
250 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... NaN NaN NaN https://twitter.com/dog_rates/status/879008229... 13 10 Beau pupper https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
251 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... NaN NaN NaN https://twitter.com/dog_rates/status/879008229... 13 10 Beau puppo https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
253 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... NaN NaN NaN https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy floofer https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
254 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... NaN NaN NaN https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy pupper https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
255 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... NaN NaN NaN https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy puppo https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
257 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow floofer https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
258 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow pupper https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
259 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow puppo https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
261 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... NaN NaN NaN https://twitter.com/dog_rates/status/878057613... 14 10 Emmy floofer https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
262 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... NaN NaN NaN https://twitter.com/dog_rates/status/878057613... 14 10 Emmy pupper https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
263 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... NaN NaN NaN https://twitter.com/dog_rates/status/878057613... 14 10 Emmy puppo https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
265 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/877736472... 13 10 Aja floofer https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
266 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/877736472... 13 10 Aja pupper https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
267 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/877736472... 13 10 Aja puppo https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
269 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/87685077... 14 10 None floofer https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
270 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/87685077... 14 10 None pupper https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
271 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/87685077... 14 10 None puppo https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
273 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... NaN NaN NaN https://twitter.com/dog_rates/status/877556246... 12 10 Penny floofer https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
274 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... NaN NaN NaN https://twitter.com/dog_rates/status/877556246... 12 10 Penny pupper https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
275 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... NaN NaN NaN https://twitter.com/dog_rates/status/877556246... 12 10 Penny puppo https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
277 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/877316821... 13 10 Dante floofer https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
278 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/877316821... 13 10 Dante pupper https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
279 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/877316821... 13 10 Dante puppo https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
281 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... NaN NaN NaN https://twitter.com/dog_rates/status/877201837... 12 10 Nelly floofer https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
282 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... NaN NaN NaN https://twitter.com/dog_rates/status/877201837... 12 10 Nelly pupper https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
283 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... NaN NaN NaN https://twitter.com/dog_rates/status/877201837... 12 10 Nelly puppo https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
285 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... NaN NaN NaN https://twitter.com/dog_rates/status/876838120... 12 10 Ginger floofer https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
286 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... NaN NaN NaN https://twitter.com/dog_rates/status/876838120... 12 10 Ginger pupper https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
287 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... NaN NaN NaN https://twitter.com/dog_rates/status/876838120... 12 10 Ginger puppo https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
289 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... NaN NaN NaN https://twitter.com/dog_rates/status/876484053... 13 10 Benedict floofer https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
290 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... NaN NaN NaN https://twitter.com/dog_rates/status/876484053... 13 10 Benedict pupper https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
291 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... NaN NaN NaN https://twitter.com/dog_rates/status/876484053... 13 10 Benedict puppo https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
293 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... NaN NaN NaN https://twitter.com/dog_rates/status/876120275... 13 10 Venti floofer https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
294 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... NaN NaN NaN https://twitter.com/dog_rates/status/876120275... 13 10 Venti pupper https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
295 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... NaN NaN NaN https://twitter.com/dog_rates/status/876120275... 13 10 Venti puppo https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
297 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... NaN NaN NaN https://twitter.com/dog_rates/status/875747767... 13 10 Goose floofer https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
298 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... NaN NaN NaN https://twitter.com/dog_rates/status/875747767... 13 10 Goose pupper https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
299 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... NaN NaN NaN https://twitter.com/dog_rates/status/875747767... 13 10 Goose puppo https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
301 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... NaN NaN NaN https://twitter.com/dog_rates/status/875144289... 13 10 Nugget floofer https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
302 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... NaN NaN NaN https://twitter.com/dog_rates/status/875144289... 13 10 Nugget pupper https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
303 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... NaN NaN NaN https://twitter.com/dog_rates/status/875144289... 13 10 Nugget puppo https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
305 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... NaN NaN NaN https://twitter.com/dog_rates/status/875021211... 12 10 None floofer https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
306 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... NaN NaN NaN https://twitter.com/dog_rates/status/875021211... 12 10 None pupper https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
307 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... NaN NaN NaN https://twitter.com/dog_rates/status/875021211... 12 10 None puppo https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
309 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... NaN NaN NaN https://twitter.com/dog_rates/status/874680097... 12 10 Cash floofer https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
310 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... NaN NaN NaN https://twitter.com/dog_rates/status/874680097... 12 10 Cash pupper https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
311 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... NaN NaN NaN https://twitter.com/dog_rates/status/874680097... 12 10 Cash puppo https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
313 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... 13 10 Jed floofer https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
314 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... 13 10 Jed pupper https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
315 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... 13 10 Jed puppo https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
317 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... NaN NaN NaN https://twitter.com/dog_rates/status/874057562... 12 10 None floofer https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
318 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... NaN NaN NaN https://twitter.com/dog_rates/status/874057562... 12 10 None pupper https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
319 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... NaN NaN NaN https://twitter.com/dog_rates/status/874057562... 12 10 None puppo https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
321 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... NaN NaN NaN https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian floofer https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
322 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... NaN NaN NaN https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian pupper https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
323 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... NaN NaN NaN https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian puppo https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
325 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397... 14 10 Walter floofer https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
326 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397... 14 10 Walter pupper https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
327 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397... 14 10 Walter puppo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
329 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... NaN NaN NaN https://twitter.com/dog_rates/status/873580283... 13 10 None floofer https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
330 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... NaN NaN NaN https://twitter.com/dog_rates/status/873580283... 13 10 None pupper https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
331 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... NaN NaN NaN https://twitter.com/dog_rates/status/873580283... 13 10 None puppo https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
333 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra floofer https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
334 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra pupper https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
335 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra puppo https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
337 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... NaN NaN NaN https://twitter.com/dog_rates/status/872967104... 12 10 None floofer https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
338 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... NaN NaN NaN https://twitter.com/dog_rates/status/872967104... 12 10 None pupper https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
339 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... NaN NaN NaN https://twitter.com/dog_rates/status/872967104... 12 10 None puppo https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
341 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... NaN NaN NaN https://twitter.com/dog_rates/status/872820683... 13 10 None floofer https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
342 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... NaN NaN NaN https://twitter.com/dog_rates/status/872820683... 13 10 None pupper https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
343 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... NaN NaN NaN https://twitter.com/dog_rates/status/872820683... 13 10 None puppo https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
345 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... NaN NaN NaN https://twitter.com/dog_rates/status/872620804... 13 10 Monkey floofer https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
346 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... NaN NaN NaN https://twitter.com/dog_rates/status/872620804... 13 10 Monkey pupper https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
347 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... NaN NaN NaN https://twitter.com/dog_rates/status/872620804... 13 10 Monkey puppo https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
349 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... NaN NaN NaN https://twitter.com/dog_rates/status/872486979... 12 10 None floofer https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
350 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... NaN NaN NaN https://twitter.com/dog_rates/status/872486979... 12 10 None pupper https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
351 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... NaN NaN NaN https://twitter.com/dog_rates/status/872486979... 12 10 None puppo https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
353 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... NaN NaN NaN https://twitter.com/dog_rates/status/872261713... 13 10 Harry floofer https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
354 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... NaN NaN NaN https://twitter.com/dog_rates/status/872261713... 13 10 Harry pupper https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
355 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... NaN NaN NaN https://twitter.com/dog_rates/status/872261713... 13 10 Harry puppo https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
357 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... NaN NaN NaN https://twitter.com/dog_rates/status/872122724... 12 10 Kody floofer https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
358 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... NaN NaN NaN https://twitter.com/dog_rates/status/872122724... 12 10 Kody pupper https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
359 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... NaN NaN NaN https://twitter.com/dog_rates/status/872122724... 12 10 Kody puppo https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
361 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... NaN NaN NaN https://twitter.com/dog_rates/status/871879754... 13 10 Lassie floofer https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
362 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... NaN NaN NaN https://twitter.com/dog_rates/status/871879754... 13 10 Lassie pupper https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
363 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... NaN NaN NaN https://twitter.com/dog_rates/status/871879754... 13 10 Lassie puppo https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
365 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... NaN NaN NaN https://twitter.com/dog_rates/status/871762521... 12 10 Rover floofer https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
366 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... NaN NaN NaN https://twitter.com/dog_rates/status/871762521... 12 10 Rover pupper https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
367 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... NaN NaN NaN https://twitter.com/dog_rates/status/871762521... 12 10 Rover puppo https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
369 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... NaN NaN NaN https://twitter.com/dog_rates/status/871515927... 12 10 Napolean floofer https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
370 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... NaN NaN NaN https://twitter.com/dog_rates/status/871515927... 12 10 Napolean pupper https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
371 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... NaN NaN NaN https://twitter.com/dog_rates/status/871515927... 12 10 Napolean puppo https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
373 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... NaN NaN NaN https://twitter.com/dog_rates/status/871032628... 13 10 Boomer floofer https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
374 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... NaN NaN NaN https://twitter.com/dog_rates/status/871032628... 13 10 Boomer pupper https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
375 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... NaN NaN NaN https://twitter.com/dog_rates/status/871032628... 13 10 Boomer puppo https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
377 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... NaN NaN NaN https://twitter.com/dog_rates/status/870804317... 11 10 None floofer https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
378 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... NaN NaN NaN https://twitter.com/dog_rates/status/870804317... 11 10 None pupper https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
379 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... NaN NaN NaN https://twitter.com/dog_rates/status/870804317... 11 10 None puppo https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
381 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody floofer https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
382 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody pupper https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
383 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody puppo https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
385 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... NaN NaN NaN https://twitter.com/dog_rates/status/870374049... 13 10 Zoey floofer https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
386 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... NaN NaN NaN https://twitter.com/dog_rates/status/870374049... 13 10 Zoey pupper https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
387 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... NaN NaN NaN https://twitter.com/dog_rates/status/870374049... 13 10 Zoey puppo https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
389 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... NaN NaN NaN https://twitter.com/dog_rates/status/870308999... 13 10 Rumble floofer https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
390 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... NaN NaN NaN https://twitter.com/dog_rates/status/870308999... 13 10 Rumble pupper https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
391 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... NaN NaN NaN https://twitter.com/dog_rates/status/870308999... 13 10 Rumble puppo https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
393 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... NaN NaN NaN https://twitter.com/dog_rates/status/870063196... 14 10 Clifford floofer https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
394 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... NaN NaN NaN https://twitter.com/dog_rates/status/870063196... 14 10 Clifford pupper https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
395 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... NaN NaN NaN https://twitter.com/dog_rates/status/870063196... 14 10 Clifford puppo https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
397 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... NaN NaN NaN https://twitter.com/dog_rates/status/869772420... 13 10 Dewey floofer https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
398 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... NaN NaN NaN https://twitter.com/dog_rates/status/869772420... 13 10 Dewey pupper https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
399 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... NaN NaN NaN https://twitter.com/dog_rates/status/869772420... 13 10 Dewey puppo https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
401 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... NaN NaN NaN https://twitter.com/dog_rates/status/869702957... 13 10 Stanley floofer https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
402 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... NaN NaN NaN https://twitter.com/dog_rates/status/869702957... 13 10 Stanley pupper https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
403 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... NaN NaN NaN https://twitter.com/dog_rates/status/869702957... 13 10 Stanley puppo https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
405 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... NaN NaN NaN https://twitter.com/dog_rates/status/869596645... 12 10 Scout floofer https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
406 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... NaN NaN NaN https://twitter.com/dog_rates/status/869596645... 12 10 Scout pupper https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
407 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... NaN NaN NaN https://twitter.com/dog_rates/status/869596645... 12 10 Scout puppo https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
409 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... NaN NaN NaN https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo floofer https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
410 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... NaN NaN NaN https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo pupper https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
411 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... NaN NaN NaN https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo puppo https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
413 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... NaN NaN NaN https://twitter.com/dog_rates/status/868880397... 14 10 Walter floofer https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
414 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... NaN NaN NaN https://twitter.com/dog_rates/status/868880397... 14 10 Walter pupper https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
415 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... NaN NaN NaN https://twitter.com/dog_rates/status/868880397... 14 10 Walter puppo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
417 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... NaN NaN NaN https://twitter.com/dog_rates/status/868622495... 13 10 None floofer https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
418 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... NaN NaN NaN https://twitter.com/dog_rates/status/868622495... 13 10 None pupper https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
419 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... NaN NaN NaN https://twitter.com/dog_rates/status/868622495... 13 10 None puppo https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
421 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper floofer https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
422 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper pupper https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
423 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper puppo https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
425 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... NaN NaN NaN https://twitter.com/dog_rates/status/867900495... 12 10 None floofer https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
426 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... NaN NaN NaN https://twitter.com/dog_rates/status/867900495... 12 10 None pupper https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
427 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... NaN NaN NaN https://twitter.com/dog_rates/status/867900495... 12 10 None puppo https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
429 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... NaN NaN NaN https://twitter.com/dog_rates/status/867774946... 13 10 Harold floofer https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
430 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... NaN NaN NaN https://twitter.com/dog_rates/status/867774946... 13 10 Harold pupper https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
431 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... NaN NaN NaN https://twitter.com/dog_rates/status/867774946... 13 10 Harold puppo https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
433 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... NaN NaN NaN https://twitter.com/dog_rates/status/867421006... 12 10 Shikha floofer https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
434 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... NaN NaN NaN https://twitter.com/dog_rates/status/867421006... 12 10 Shikha pupper https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
435 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... NaN NaN NaN https://twitter.com/dog_rates/status/867421006... 12 10 Shikha puppo https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
437 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/86501... 13 10 None floofer https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
438 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/86501... 13 10 None pupper https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
439 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/86501... 13 10 None puppo https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
441 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/867051520... 13 10 None floofer https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
442 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/867051520... 13 10 None pupper https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
443 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/867051520... 13 10 None puppo https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
445 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... NaN NaN NaN https://twitter.com/dog_rates/status/866686824... 12 10 Lili floofer https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
446 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... NaN NaN NaN https://twitter.com/dog_rates/status/866686824... 12 10 Lili pupper https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
447 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... NaN NaN NaN https://twitter.com/dog_rates/status/866686824... 12 10 Lili puppo https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
449 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... NaN NaN NaN https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy floofer https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
450 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... NaN NaN NaN https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy pupper https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
451 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... NaN NaN NaN https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy puppo https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
453 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... NaN NaN NaN https://twitter.com/dog_rates/status/866334964... 12 10 Coco floofer https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
454 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... NaN NaN NaN https://twitter.com/dog_rates/status/866334964... 12 10 Coco pupper https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
455 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... NaN NaN NaN https://twitter.com/dog_rates/status/866334964... 12 10 Coco puppo https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
457 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... NaN NaN NaN https://twitter.com/dog_rates/status/865718153... 13 10 Boomer floofer https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
458 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... NaN NaN NaN https://twitter.com/dog_rates/status/865718153... 13 10 Boomer pupper https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
459 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... NaN NaN NaN https://twitter.com/dog_rates/status/865718153... 13 10 Boomer puppo https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
461 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... NaN NaN NaN https://twitter.com/dog_rates/status/865359393... 13 10 Sammy floofer https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
462 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... NaN NaN NaN https://twitter.com/dog_rates/status/865359393... 13 10 Sammy pupper https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
463 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... NaN NaN NaN https://twitter.com/dog_rates/status/865359393... 13 10 Sammy puppo https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
465 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... NaN NaN NaN https://twitter.com/dog_rates/status/865006731... 13 10 Nelly floofer https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
466 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... NaN NaN NaN https://twitter.com/dog_rates/status/865006731... 13 10 Nelly pupper https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
467 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... NaN NaN NaN https://twitter.com/dog_rates/status/865006731... 13 10 Nelly puppo https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
469 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... NaN NaN NaN https://twitter.com/dog_rates/status/864873206... 14 10 None floofer https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
470 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... NaN NaN NaN https://twitter.com/dog_rates/status/864873206... 14 10 None pupper https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
471 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... NaN NaN NaN https://twitter.com/dog_rates/status/864873206... 14 10 None puppo https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
473 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... NaN NaN NaN https://twitter.com/dog_rates/status/864279568... 12 10 Meatball floofer https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
474 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... NaN NaN NaN https://twitter.com/dog_rates/status/864279568... 12 10 Meatball pupper https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
475 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... NaN NaN NaN https://twitter.com/dog_rates/status/864279568... 12 10 Meatball puppo https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
477 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... NaN NaN NaN https://twitter.com/dog_rates/status/864197398... 13 10 Paisley floofer https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
478 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... NaN NaN NaN https://twitter.com/dog_rates/status/864197398... 13 10 Paisley pupper https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
479 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... NaN NaN NaN https://twitter.com/dog_rates/status/864197398... 13 10 Paisley puppo https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
481 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... NaN NaN NaN https://twitter.com/dog_rates/status/863907417... 13 10 Albus floofer https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
482 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... NaN NaN NaN https://twitter.com/dog_rates/status/863907417... 13 10 Albus pupper https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
483 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... NaN NaN NaN https://twitter.com/dog_rates/status/863907417... 13 10 Albus puppo https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
485 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... NaN NaN NaN https://twitter.com/dog_rates/status/863553081... 13 10 Neptune floofer https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
486 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... NaN NaN NaN https://twitter.com/dog_rates/status/863553081... 13 10 Neptune pupper https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
487 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... NaN NaN NaN https://twitter.com/dog_rates/status/863553081... 13 10 Neptune puppo https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
489 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... NaN NaN NaN https://twitter.com/dog_rates/status/863432100... 12 10 Belle floofer https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
490 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... NaN NaN NaN https://twitter.com/dog_rates/status/863432100... 12 10 Belle pupper https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
491 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... NaN NaN NaN https://twitter.com/dog_rates/status/863432100... 12 10 Belle puppo https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
493 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... NaN NaN NaN https://twitter.com/dog_rates/status/863079547... 14 10 None floofer https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
494 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... NaN NaN NaN https://twitter.com/dog_rates/status/863079547... 14 10 None pupper https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
495 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... NaN NaN NaN https://twitter.com/dog_rates/status/863079547... 14 10 None puppo https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
497 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... NaN NaN NaN https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn floofer https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
498 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... NaN NaN NaN https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn pupper https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
499 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... NaN NaN NaN https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn puppo https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
501 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... NaN NaN NaN https://twitter.com/dog_rates/status/862831371... 13 10 Zooey floofer https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
502 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... NaN NaN NaN https://twitter.com/dog_rates/status/862831371... 13 10 Zooey pupper https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
503 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... NaN NaN NaN https://twitter.com/dog_rates/status/862831371... 13 10 Zooey puppo https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
505 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... NaN NaN NaN https://twitter.com/dog_rates/status/862722525... 11 10 Dave floofer https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
506 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... NaN NaN NaN https://twitter.com/dog_rates/status/862722525... 11 10 Dave pupper https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
507 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... NaN NaN NaN https://twitter.com/dog_rates/status/862722525... 11 10 Dave puppo https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
509 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... NaN NaN NaN https://twitter.com/dog_rates/status/862457590... 13 10 Jersey floofer https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
510 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... NaN NaN NaN https://twitter.com/dog_rates/status/862457590... 13 10 Jersey pupper https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
511 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... NaN NaN NaN https://twitter.com/dog_rates/status/862457590... 13 10 Jersey puppo https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
513 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... NaN NaN NaN https://twitter.com/dog_rates/status/862096992... 13 10 None floofer https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
514 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... NaN NaN NaN https://twitter.com/dog_rates/status/862096992... 13 10 None pupper https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
515 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... NaN NaN NaN https://twitter.com/dog_rates/status/862096992... 13 10 None puppo https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
517 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075... 13 10 None floofer https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
518 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075... 13 10 None pupper https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
519 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075... 13 10 None puppo https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
521 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... NaN NaN NaN https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes floofer https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
522 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... NaN NaN NaN https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes pupper https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
523 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... NaN NaN NaN https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes puppo https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
525 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... NaN NaN NaN https://twitter.com/dog_rates/status/861288531... 13 10 None floofer https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
526 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... NaN NaN NaN https://twitter.com/dog_rates/status/861288531... 13 10 None pupper https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
527 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... NaN NaN NaN https://twitter.com/dog_rates/status/861288531... 13 10 None puppo https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
529 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... NaN NaN NaN https://twitter.com/dog_rates/status/861005113... 12 10 Burt floofer https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
530 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... NaN NaN NaN https://twitter.com/dog_rates/status/861005113... 12 10 Burt pupper https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
531 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... NaN NaN NaN https://twitter.com/dog_rates/status/861005113... 12 10 Burt puppo https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
533 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485... 13 10 None floofer https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
534 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485... 13 10 None pupper https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
535 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485... 13 10 None puppo https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
537 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo floofer https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
538 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo pupper https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
539 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo puppo https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
541 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... NaN NaN NaN https://twitter.com/dog_rates/status/860524505... 13 10 Carl floofer https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
542 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... NaN NaN NaN https://twitter.com/dog_rates/status/860524505... 13 10 Carl pupper https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
543 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... NaN NaN NaN https://twitter.com/dog_rates/status/860524505... 13 10 Carl puppo https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
545 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... NaN NaN NaN https://twitter.com/dog_rates/status/860276583... 12 10 Jordy floofer https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
546 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... NaN NaN NaN https://twitter.com/dog_rates/status/860276583... 12 10 Jordy pupper https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
547 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... NaN NaN NaN https://twitter.com/dog_rates/status/860276583... 12 10 Jordy puppo https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
549 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... NaN NaN NaN https://twitter.com/dog_rates/status/860184849... 14 10 None floofer https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
550 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... NaN NaN NaN https://twitter.com/dog_rates/status/860184849... 14 10 None pupper https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
551 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... NaN NaN NaN https://twitter.com/dog_rates/status/860184849... 14 10 None puppo https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
553 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... NaN NaN NaN https://twitter.com/dog_rates/status/859924526... 12 10 Milky floofer https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
554 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... NaN NaN NaN https://twitter.com/dog_rates/status/859924526... 12 10 Milky pupper https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
555 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... NaN NaN NaN https://twitter.com/dog_rates/status/859924526... 12 10 Milky puppo https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
557 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... NaN NaN NaN https://twitter.com/dog_rates/status/859851578... 13 10 Trooper floofer https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
558 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... NaN NaN NaN https://twitter.com/dog_rates/status/859851578... 13 10 Trooper pupper https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
559 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... NaN NaN NaN https://twitter.com/dog_rates/status/859851578... 13 10 Trooper puppo https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
561 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... NaN NaN NaN https://twitter.com/dog_rates/status/859607811... 13 10 None floofer https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
562 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... NaN NaN NaN https://twitter.com/dog_rates/status/859607811... 13 10 None pupper https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
563 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... NaN NaN NaN https://twitter.com/dog_rates/status/859607811... 13 10 None puppo https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
565 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... NaN NaN NaN https://twitter.com/dog_rates/status/859196978... 12 10 quite floofer https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
566 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... NaN NaN NaN https://twitter.com/dog_rates/status/859196978... 12 10 quite pupper https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
567 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... NaN NaN NaN https://twitter.com/dog_rates/status/859196978... 12 10 quite puppo https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
569 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... NaN NaN NaN https://twitter.com/dog_rates/status/859074603... 13 10 None floofer https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
570 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... NaN NaN NaN https://twitter.com/dog_rates/status/859074603... 13 10 None pupper https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
571 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... NaN NaN NaN https://twitter.com/dog_rates/status/859074603... 13 10 None puppo https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
573 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... NaN NaN NaN https://twitter.com/dog_rates/status/858843525... 13 10 None floofer https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
574 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... NaN NaN NaN https://twitter.com/dog_rates/status/858843525... 13 10 None pupper https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
575 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... NaN NaN NaN https://twitter.com/dog_rates/status/858843525... 13 10 None puppo https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
577 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... NaN NaN NaN https://twitter.com/dog_rates/status/858471635... 13 10 Sophie floofer https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
578 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... NaN NaN NaN https://twitter.com/dog_rates/status/858471635... 13 10 Sophie pupper https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
579 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... NaN NaN NaN https://twitter.com/dog_rates/status/858471635... 13 10 Sophie puppo https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
581 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... NaN NaN NaN https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt floofer https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
582 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... NaN NaN NaN https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt pupper https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
583 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... NaN NaN NaN https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt puppo https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
585 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... NaN NaN NaN https://twitter.com/dog_rates/status/857989990... 12 10 Rosie floofer https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
586 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... NaN NaN NaN https://twitter.com/dog_rates/status/857989990... 12 10 Rosie pupper https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
587 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... NaN NaN NaN https://twitter.com/dog_rates/status/857989990... 12 10 Rosie puppo https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
589 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... NaN NaN NaN https://twitter.com/dog_rates/status/857746408... 13 10 Thor floofer https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
590 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... NaN NaN NaN https://twitter.com/dog_rates/status/857746408... 13 10 Thor pupper https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
591 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... NaN NaN NaN https://twitter.com/dog_rates/status/857746408... 13 10 Thor puppo https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
593 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None floofer https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
594 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None pupper https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
595 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None puppo https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
597 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar floofer https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
598 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar pupper https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
599 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar puppo https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
601 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... NaN NaN NaN https://twitter.com/dog_rates/status/857029823... 12 10 Zeke floofer https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
602 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... NaN NaN NaN https://twitter.com/dog_rates/status/857029823... 12 10 Zeke pupper https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
603 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... NaN NaN NaN https://twitter.com/dog_rates/status/857029823... 12 10 Zeke puppo https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
605 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... NaN NaN NaN https://twitter.com/dog_rates/status/856543823... 12 10 Callie floofer https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
606 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... NaN NaN NaN https://twitter.com/dog_rates/status/856543823... 12 10 Callie pupper https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
607 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... NaN NaN NaN https://twitter.com/dog_rates/status/856543823... 12 10 Callie puppo https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
609 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... NaN NaN NaN https://twitter.com/dog_rates/status/856526610... 14 10 None floofer https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
610 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... NaN NaN NaN https://twitter.com/dog_rates/status/856526610... 14 10 None pupper https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
611 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... NaN NaN NaN https://twitter.com/dog_rates/status/856526610... 14 10 None puppo https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
613 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... NaN NaN NaN https://twitter.com/dog_rates/status/856282028... 14 10 Cermet floofer https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
614 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... NaN NaN NaN https://twitter.com/dog_rates/status/856282028... 14 10 Cermet pupper https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
615 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... NaN NaN NaN https://twitter.com/dog_rates/status/856282028... 14 10 Cermet puppo https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
617 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... NaN NaN NaN https://twitter.com/dog_rates/status/855851453... 13 10 None floofer https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
618 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... NaN NaN NaN https://twitter.com/dog_rates/status/855851453... 13 10 None pupper https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
619 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... NaN NaN NaN https://twitter.com/dog_rates/status/855851453... 13 10 None puppo https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
621 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... NaN NaN NaN https://twitter.com/dog_rates/status/855459453... 12 10 quite floofer https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
622 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... NaN NaN NaN https://twitter.com/dog_rates/status/855459453... 12 10 quite pupper https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
623 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... NaN NaN NaN https://twitter.com/dog_rates/status/855459453... 12 10 quite puppo https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
625 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... NaN NaN NaN https://twitter.com/dog_rates/status/854732716... 12 10 Marlee floofer https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
626 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... NaN NaN NaN https://twitter.com/dog_rates/status/854732716... 12 10 Marlee pupper https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
627 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... NaN NaN NaN https://twitter.com/dog_rates/status/854732716... 12 10 Marlee puppo https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
629 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... NaN NaN NaN https://twitter.com/dog_rates/status/854482394... 13 10 Arya floofer https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
630 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... NaN NaN NaN https://twitter.com/dog_rates/status/854482394... 13 10 Arya pupper https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
631 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... NaN NaN NaN https://twitter.com/dog_rates/status/854482394... 13 10 Arya puppo https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
633 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... NaN NaN NaN https://twitter.com/dog_rates/status/854365224... 13 10 Einstein floofer https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
634 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... NaN NaN NaN https://twitter.com/dog_rates/status/854365224... 13 10 Einstein pupper https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
635 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... NaN NaN NaN https://twitter.com/dog_rates/status/854365224... 13 10 Einstein puppo https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
637 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... NaN NaN NaN https://twitter.com/dog_rates/status/854120357... 14 10 None floofer https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
638 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... NaN NaN NaN https://twitter.com/dog_rates/status/854120357... 14 10 None pupper https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
639 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... NaN NaN NaN https://twitter.com/dog_rates/status/854120357... 14 10 None puppo https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
641 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... NaN NaN NaN https://twitter.com/dog_rates/status/854010172... 11 10 None floofer https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
642 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... NaN NaN NaN https://twitter.com/dog_rates/status/854010172... 11 10 None pupper https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
643 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... NaN NaN NaN https://twitter.com/dog_rates/status/854010172... 11 10 None puppo https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
645 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... NaN NaN NaN https://twitter.com/dog_rates/status/853760880... 12 10 Alice floofer https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
646 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... NaN NaN NaN https://twitter.com/dog_rates/status/853760880... 12 10 Alice pupper https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
647 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... NaN NaN NaN https://twitter.com/dog_rates/status/853760880... 12 10 Alice puppo https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
649 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... NaN NaN NaN https://twitter.com/dog_rates/status/853639147... 13 10 None floofer https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
650 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... NaN NaN NaN https://twitter.com/dog_rates/status/853639147... 13 10 None pupper https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
651 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... NaN NaN NaN https://twitter.com/dog_rates/status/853639147... 13 10 None puppo https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
653 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... NaN NaN NaN https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole floofer https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
654 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... NaN NaN NaN https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole pupper https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
655 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... NaN NaN NaN https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole puppo https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
657 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny floofer https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
658 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny pupper https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
659 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny puppo https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
661 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... NaN NaN NaN https://twitter.com/dog_rates/status/852672615... 12 10 Aspen floofer https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
662 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... NaN NaN NaN https://twitter.com/dog_rates/status/852672615... 12 10 Aspen pupper https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
663 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... NaN NaN NaN https://twitter.com/dog_rates/status/852672615... 12 10 Aspen puppo https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
665 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... NaN NaN NaN https://twitter.com/dog_rates/status/852553447... 13 10 Jarod floofer https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
666 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... NaN NaN NaN https://twitter.com/dog_rates/status/852553447... 13 10 Jarod pupper https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
667 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... NaN NaN NaN https://twitter.com/dog_rates/status/852553447... 13 10 Jarod puppo https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
669 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... NaN NaN NaN https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles floofer https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
670 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... NaN NaN NaN https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles pupper https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
671 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... NaN NaN NaN https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles puppo https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
673 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... NaN NaN NaN https://twitter.com/dog_rates/status/852226086... 14 10 General floofer https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
674 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... NaN NaN NaN https://twitter.com/dog_rates/status/852226086... 14 10 General pupper https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
675 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... NaN NaN NaN https://twitter.com/dog_rates/status/852226086... 14 10 General puppo https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
677 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... NaN NaN NaN https://twitter.com/dog_rates/status/852189679... 12 10 Sailor floofer https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
678 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... NaN NaN NaN https://twitter.com/dog_rates/status/852189679... 12 10 Sailor pupper https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
679 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... NaN NaN NaN https://twitter.com/dog_rates/status/852189679... 12 10 Sailor puppo https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
681 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341... 13 10 Astrid floofer https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
682 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341... 13 10 Astrid pupper https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
683 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341... 13 10 Astrid puppo https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
685 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/8482893... 10 10 None floofer https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
686 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/8482893... 10 10 None pupper https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
687 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/8482893... 10 10 None puppo https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
689 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... NaN NaN NaN https://twitter.com/dog_rates/status/851591660... 11 10 None floofer https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
690 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... NaN NaN NaN https://twitter.com/dog_rates/status/851591660... 11 10 None pupper https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
691 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... NaN NaN NaN https://twitter.com/dog_rates/status/851591660... 11 10 None puppo https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
693 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... NaN NaN NaN https://twitter.com/dog_rates/status/851464819... 14 10 Iggy floofer https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
694 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... NaN NaN NaN https://twitter.com/dog_rates/status/851464819... 14 10 Iggy pupper https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
695 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... NaN NaN NaN https://twitter.com/dog_rates/status/851464819... 14 10 Iggy puppo https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
697 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... NaN NaN NaN https://twitter.com/dog_rates/status/851224888... 13 10 Snoop floofer https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
698 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... NaN NaN NaN https://twitter.com/dog_rates/status/851224888... 13 10 Snoop pupper https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
699 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... NaN NaN NaN https://twitter.com/dog_rates/status/851224888... 13 10 Snoop puppo https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
701 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... NaN NaN NaN https://twitter.com/dog_rates/status/850753642... 11 10 Kyle floofer https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
702 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... NaN NaN NaN https://twitter.com/dog_rates/status/850753642... 11 10 Kyle pupper https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
703 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... NaN NaN NaN https://twitter.com/dog_rates/status/850753642... 11 10 Kyle puppo https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
705 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... NaN NaN NaN https://twitter.com/dog_rates/status/850380195... 13 10 Leo floofer https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
706 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... NaN NaN NaN https://twitter.com/dog_rates/status/850380195... 13 10 Leo pupper https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
707 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... NaN NaN NaN https://twitter.com/dog_rates/status/850380195... 13 10 Leo puppo https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
709 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... NaN NaN NaN https://twitter.com/dog_rates/status/850145622... 11 10 Riley floofer https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
710 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... NaN NaN NaN https://twitter.com/dog_rates/status/850145622... 11 10 Riley pupper https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
711 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... NaN NaN NaN https://twitter.com/dog_rates/status/850145622... 11 10 Riley puppo https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
713 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... NaN NaN NaN https://twitter.com/dog_rates/status/850019790... 12 10 Boomer floofer https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
714 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... NaN NaN NaN https://twitter.com/dog_rates/status/850019790... 12 10 Boomer pupper https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
715 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... NaN NaN NaN https://twitter.com/dog_rates/status/850019790... 12 10 Boomer puppo https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
717 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... NaN NaN NaN https://twitter.com/dog_rates/status/849776966... 12 10 None floofer https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
718 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... NaN NaN NaN https://twitter.com/dog_rates/status/849776966... 12 10 None pupper https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
719 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... NaN NaN NaN https://twitter.com/dog_rates/status/849776966... 12 10 None puppo https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
721 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... NaN NaN NaN https://twitter.com/dog_rates/status/849412302... 12 10 Noosh floofer https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
722 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... NaN NaN NaN https://twitter.com/dog_rates/status/849412302... 12 10 Noosh pupper https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
723 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... NaN NaN NaN https://twitter.com/dog_rates/status/849412302... 12 10 Noosh puppo https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
725 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... NaN NaN NaN https://twitter.com/dog_rates/status/849336543... 11 10 None floofer https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
726 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... NaN NaN NaN https://twitter.com/dog_rates/status/849336543... 11 10 None pupper https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
727 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... NaN NaN NaN https://twitter.com/dog_rates/status/849336543... 11 10 None puppo https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
729 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... NaN NaN NaN https://twitter.com/dog_rates/status/849051919... 13 10 Kevin floofer https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
730 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... NaN NaN NaN https://twitter.com/dog_rates/status/849051919... 13 10 Kevin pupper https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
731 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... NaN NaN NaN https://twitter.com/dog_rates/status/849051919... 13 10 Kevin puppo https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
733 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... NaN NaN NaN https://twitter.com/dog_rates/status/848690551... 12 10 None floofer https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
734 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... NaN NaN NaN https://twitter.com/dog_rates/status/848690551... 12 10 None pupper https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
735 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... NaN NaN NaN https://twitter.com/dog_rates/status/848690551... 12 10 None puppo https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
737 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... NaN NaN NaN https://twitter.com/dog_rates/status/848324959... 12 10 Odin floofer https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
738 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... NaN NaN NaN https://twitter.com/dog_rates/status/848324959... 12 10 Odin pupper https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
739 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... NaN NaN NaN https://twitter.com/dog_rates/status/848324959... 12 10 Odin puppo https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
741 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... NaN NaN NaN https://twitter.com/dog_rates/status/848212111... 6 10 Jerry floofer https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
742 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... NaN NaN NaN https://twitter.com/dog_rates/status/848212111... 6 10 Jerry pupper https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
743 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... NaN NaN NaN https://twitter.com/dog_rates/status/848212111... 6 10 Jerry puppo https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
745 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971... 13 10 None floofer https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
746 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971... 13 10 None pupper https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
747 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971... 13 10 None puppo https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
749 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... NaN NaN NaN https://twitter.com/dog_rates/status/847962785... 10 10 Georgie floofer https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
750 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... NaN NaN NaN https://twitter.com/dog_rates/status/847962785... 10 10 Georgie pupper https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
751 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... NaN NaN NaN https://twitter.com/dog_rates/status/847962785... 10 10 Georgie puppo https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
753 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... NaN NaN NaN https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu floofer https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
754 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... NaN NaN NaN https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu pupper https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
755 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... NaN NaN NaN https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu puppo https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
757 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... NaN NaN NaN https://twitter.com/dog_rates/status/847606175... 12 10 Cannon floofer https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
758 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... NaN NaN NaN https://twitter.com/dog_rates/status/847606175... 12 10 Cannon pupper https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
759 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... NaN NaN NaN https://twitter.com/dog_rates/status/847606175... 12 10 Cannon puppo https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
761 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... NaN NaN NaN https://twitter.com/dog_rates/status/847251039... 12 10 Furzey floofer https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
762 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... NaN NaN NaN https://twitter.com/dog_rates/status/847251039... 12 10 Furzey pupper https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
763 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... NaN NaN NaN https://twitter.com/dog_rates/status/847251039... 12 10 Furzey puppo https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
765 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... NaN NaN NaN https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy floofer https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
766 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... NaN NaN NaN https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy pupper https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
767 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... NaN NaN NaN https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy puppo https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
769 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... NaN NaN NaN https://twitter.com/dog_rates/status/847116187... 11 10 None floofer https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
770 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... NaN NaN NaN https://twitter.com/dog_rates/status/847116187... 11 10 None pupper https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
771 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... NaN NaN NaN https://twitter.com/dog_rates/status/847116187... 11 10 None puppo https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
773 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/846874817... 13 10 Tuck floofer https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
774 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/846874817... 13 10 Tuck pupper https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
775 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/846874817... 13 10 Tuck puppo https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
777 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... NaN NaN NaN https://twitter.com/dog_rates/status/846514051... 13 10 Barney floofer https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
778 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... NaN NaN NaN https://twitter.com/dog_rates/status/846514051... 13 10 Barney pupper https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
779 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... NaN NaN NaN https://twitter.com/dog_rates/status/846514051... 13 10 Barney puppo https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
781 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... NaN NaN NaN https://twitter.com/dog_rates/status/846153765... 13 10 Vixen floofer https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
782 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... NaN NaN NaN https://twitter.com/dog_rates/status/846153765... 13 10 Vixen pupper https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
783 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... NaN NaN NaN https://twitter.com/dog_rates/status/846153765... 13 10 Vixen puppo https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
785 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... NaN NaN NaN https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis floofer https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
786 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... NaN NaN NaN https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis pupper https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
787 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... NaN NaN NaN https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis puppo https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
789 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... NaN NaN NaN https://twitter.com/dog_rates/status/845812042... 13 10 None floofer https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
790 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... NaN NaN NaN https://twitter.com/dog_rates/status/845812042... 13 10 None pupper https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
791 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... NaN NaN NaN https://twitter.com/dog_rates/status/845812042... 13 10 None puppo https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
793 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/845677943... 12 10 None floofer https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
794 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/845677943... 12 10 None pupper https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
795 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/845677943... 12 10 None puppo https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
797 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa floofer https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
798 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa pupper https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
799 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa puppo https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
801 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/845306882... 12 10 Pickles floofer https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
802 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/845306882... 12 10 Pickles pupper https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
803 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/845306882... 12 10 Pickles puppo https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
805 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... NaN NaN NaN https://twitter.com/dog_rates/status/844979544... 13 10 None floofer https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
806 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... NaN NaN NaN https://twitter.com/dog_rates/status/844979544... 13 10 None pupper https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
807 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... NaN NaN NaN https://twitter.com/dog_rates/status/844979544... 13 10 None puppo https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
809 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... NaN NaN NaN https://twitter.com/dog_rates/status/844973813... 12 10 Brady floofer https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
810 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... NaN NaN NaN https://twitter.com/dog_rates/status/844973813... 12 10 Brady pupper https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
811 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... NaN NaN NaN https://twitter.com/dog_rates/status/844973813... 12 10 Brady puppo https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
813 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... NaN NaN NaN https://twitter.com/dog_rates/status/844704788... 13 10 Luna floofer https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
814 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... NaN NaN NaN https://twitter.com/dog_rates/status/844704788... 13 10 Luna pupper https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
815 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... NaN NaN NaN https://twitter.com/dog_rates/status/844704788... 13 10 Luna puppo https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
817 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... NaN NaN NaN https://twitter.com/dog_rates/status/844580511... 11 10 Charlie floofer https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
818 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... NaN NaN NaN https://twitter.com/dog_rates/status/844580511... 11 10 Charlie pupper https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
819 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... NaN NaN NaN https://twitter.com/dog_rates/status/844580511... 11 10 Charlie puppo https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
821 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... NaN NaN NaN https://twitter.com/dog_rates/status/844223788... 12 10 Margo floofer https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
822 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... NaN NaN NaN https://twitter.com/dog_rates/status/844223788... 12 10 Margo pupper https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
823 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... NaN NaN NaN https://twitter.com/dog_rates/status/844223788... 12 10 Margo puppo https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
825 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... NaN NaN NaN https://twitter.com/dog_rates/status/843856843... 12 10 Sadie floofer https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
826 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... NaN NaN NaN https://twitter.com/dog_rates/status/843856843... 12 10 Sadie pupper https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
827 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... NaN NaN NaN https://twitter.com/dog_rates/status/843856843... 12 10 Sadie puppo https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
829 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... NaN NaN NaN https://twitter.com/dog_rates/status/843604394... 11 10 Hank floofer https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
830 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... NaN NaN NaN https://twitter.com/dog_rates/status/843604394... 11 10 Hank pupper https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
831 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... NaN NaN NaN https://twitter.com/dog_rates/status/843604394... 11 10 Hank puppo https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
833 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... NaN NaN NaN https://twitter.com/dog_rates/status/843235543... 13 10 Tycho floofer https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
834 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... NaN NaN NaN https://twitter.com/dog_rates/status/843235543... 13 10 Tycho pupper https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
835 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... NaN NaN NaN https://twitter.com/dog_rates/status/843235543... 13 10 Tycho puppo https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
837 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840... 13 10 Stephan floofer https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
838 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840... 13 10 Stephan pupper https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
839 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840... 13 10 Stephan puppo https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
841 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... NaN NaN NaN https://twitter.com/dog_rates/status/842846295... 13 10 Charlie floofer https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
842 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... NaN NaN NaN https://twitter.com/dog_rates/status/842846295... 13 10 Charlie pupper https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
843 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... NaN NaN NaN https://twitter.com/dog_rates/status/842846295... 13 10 Charlie puppo https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
845 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... NaN NaN NaN https://www.gofundme.com/get-indie-home/,https... 12 10 Indie floofer https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
846 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... NaN NaN NaN https://www.gofundme.com/get-indie-home/,https... 12 10 Indie pupper https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
847 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... NaN NaN NaN https://www.gofundme.com/get-indie-home/,https... 12 10 Indie puppo https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
849 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... NaN NaN NaN https://twitter.com/dog_rates/status/842535590... 13 10 Winnie floofer https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
850 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... NaN NaN NaN https://twitter.com/dog_rates/status/842535590... 13 10 Winnie pupper https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
851 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... NaN NaN NaN https://twitter.com/dog_rates/status/842535590... 13 10 Winnie puppo https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
853 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... NaN NaN NaN https://twitter.com/dog_rates/status/842163532... 12 10 George floofer https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
854 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... NaN NaN NaN https://twitter.com/dog_rates/status/842163532... 12 10 George pupper https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
855 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... NaN NaN NaN https://twitter.com/dog_rates/status/842163532... 12 10 George puppo https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
857 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... NaN NaN NaN https://twitter.com/dog_rates/status/842115215... 12 10 Bentley floofer https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
858 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... NaN NaN NaN https://twitter.com/dog_rates/status/842115215... 12 10 Bentley pupper https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
859 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... NaN NaN NaN https://twitter.com/dog_rates/status/842115215... 12 10 Bentley puppo https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
861 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860... 13 10 Ken floofer https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
862 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860... 13 10 Ken pupper https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
863 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860... 13 10 Ken puppo https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
865 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... NaN NaN NaN https://twitter.com/dog_rates/status/841680585... 12 10 Penny floofer https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
866 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... NaN NaN NaN https://twitter.com/dog_rates/status/841680585... 12 10 Penny pupper https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
867 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... NaN NaN NaN https://twitter.com/dog_rates/status/841680585... 12 10 Penny puppo https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
869 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... NaN NaN NaN https://twitter.com/dog_rates/status/841439858... 14 10 None floofer https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
870 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... NaN NaN NaN https://twitter.com/dog_rates/status/841439858... 14 10 None pupper https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
871 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... NaN NaN NaN https://twitter.com/dog_rates/status/841439858... 14 10 None puppo https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
873 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... NaN NaN NaN https://twitter.com/dog_rates/status/841314665... 13 10 Max floofer https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
874 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... NaN NaN NaN https://twitter.com/dog_rates/status/841314665... 13 10 Max pupper https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
875 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... NaN NaN NaN https://twitter.com/dog_rates/status/841314665... 13 10 Max puppo https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
877 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... NaN NaN NaN https://twitter.com/dog_rates/status/841077006... 12 10 Dawn floofer https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
878 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... NaN NaN NaN https://twitter.com/dog_rates/status/841077006... 12 10 Dawn pupper https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
879 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... NaN NaN NaN https://twitter.com/dog_rates/status/841077006... 12 10 Dawn puppo https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
881 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... NaN NaN NaN https://twitter.com/dog_rates/status/840696689... 10 10 None floofer https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
882 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... NaN NaN NaN https://twitter.com/dog_rates/status/840696689... 10 10 None pupper https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
883 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... NaN NaN NaN https://twitter.com/dog_rates/status/840696689... 10 10 None puppo https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
885 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie floofer https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
886 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie pupper https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
887 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie puppo https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
889 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... NaN NaN NaN https://twitter.com/dog_rates/status/840370681... 13 10 None floofer https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
890 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... NaN NaN NaN https://twitter.com/dog_rates/status/840370681... 13 10 None pupper https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
891 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... NaN NaN NaN https://twitter.com/dog_rates/status/840370681... 13 10 None puppo https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
893 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... NaN NaN NaN https://twitter.com/dog_rates/status/840268004... 12 10 Monty floofer https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
894 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... NaN NaN NaN https://twitter.com/dog_rates/status/840268004... 12 10 Monty pupper https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
895 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... NaN NaN NaN https://twitter.com/dog_rates/status/840268004... 12 10 Monty puppo https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
897 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... NaN NaN NaN https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner floofer https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
898 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... NaN NaN NaN https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner pupper https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
899 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... NaN NaN NaN https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner puppo https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
901 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... NaN NaN NaN https://twitter.com/dog_rates/status/839549326... 12 10 Winston floofer https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
902 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... NaN NaN NaN https://twitter.com/dog_rates/status/839549326... 12 10 Winston pupper https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
903 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... NaN NaN NaN https://twitter.com/dog_rates/status/839549326... 12 10 Winston puppo https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
905 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/8392... 10 10 None floofer https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
906 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/8392... 10 10 None pupper https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
907 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/8392... 10 10 None puppo https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
909 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... NaN NaN NaN https://twitter.com/dog_rates/status/839239871... 13 10 Odie floofer https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
910 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... NaN NaN NaN https://twitter.com/dog_rates/status/839239871... 13 10 Odie pupper https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
911 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... NaN NaN NaN https://twitter.com/dog_rates/status/839239871... 13 10 Odie puppo https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
913 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... NaN NaN NaN https://twitter.com/dog_rates/status/838921590... 13 10 Arlo floofer https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
914 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... NaN NaN NaN https://twitter.com/dog_rates/status/838921590... 13 10 Arlo pupper https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
915 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... NaN NaN NaN https://twitter.com/dog_rates/status/838921590... 13 10 Arlo puppo https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
917 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/83890598062... 15 10 None floofer https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
918 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/83890598062... 15 10 None pupper https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
919 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/83890598062... 15 10 None puppo https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
921 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... NaN NaN NaN https://twitter.com/dog_rates/status/838561493... 13 10 Walter floofer https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
922 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... NaN NaN NaN https://twitter.com/dog_rates/status/838561493... 13 10 Walter pupper https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
923 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... NaN NaN NaN https://twitter.com/dog_rates/status/838561493... 13 10 Walter puppo https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
925 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... NaN NaN NaN https://twitter.com/dog_rates/status/838476387... 13 10 Stanley floofer https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
926 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... NaN NaN NaN https://twitter.com/dog_rates/status/838476387... 13 10 Stanley pupper https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
927 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... NaN NaN NaN https://twitter.com/dog_rates/status/838476387... 13 10 Stanley puppo https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
929 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... NaN NaN NaN https://twitter.com/dog_rates/status/838083903... 13 10 Daisy floofer https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
930 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... NaN NaN NaN https://twitter.com/dog_rates/status/838083903... 13 10 Daisy pupper https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
931 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... NaN NaN NaN https://twitter.com/dog_rates/status/838083903... 13 10 Daisy puppo https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
933 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... NaN NaN NaN https://twitter.com/dog_rates/status/837820167... 12 10 None floofer https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
934 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... NaN NaN NaN https://twitter.com/dog_rates/status/837820167... 12 10 None pupper https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
935 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... NaN NaN NaN https://twitter.com/dog_rates/status/837820167... 12 10 None puppo https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
937 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... NaN NaN NaN https://twitter.com/dog_rates/status/837482249... 13 10 Waffles floofer https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
938 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... NaN NaN NaN https://twitter.com/dog_rates/status/837482249... 13 10 Waffles pupper https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
939 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... NaN NaN NaN https://twitter.com/dog_rates/status/837482249... 13 10 Waffles puppo https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
941 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... NaN NaN NaN https://twitter.com/dog_rates/status/837471256... 12 10 Vincent floofer https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
942 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... NaN NaN NaN https://twitter.com/dog_rates/status/837471256... 12 10 Vincent pupper https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
943 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... NaN NaN NaN https://twitter.com/dog_rates/status/837471256... 12 10 Vincent puppo https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
945 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... NaN NaN NaN https://twitter.com/dog_rates/status/837366284... 13 10 Lucy floofer https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
946 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... NaN NaN NaN https://twitter.com/dog_rates/status/837366284... 13 10 Lucy pupper https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
947 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... NaN NaN NaN https://twitter.com/dog_rates/status/837366284... 13 10 Lucy puppo https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
949 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... NaN NaN NaN https://twitter.com/dog_rates/status/837110210... 13 10 Clark floofer https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
950 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... NaN NaN NaN https://twitter.com/dog_rates/status/837110210... 13 10 Clark pupper https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
951 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... NaN NaN NaN https://twitter.com/dog_rates/status/837110210... 13 10 Clark puppo https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
953 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837... 14 10 None floofer https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
954 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837... 14 10 None pupper https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
955 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837... 14 10 None puppo https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
957 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... NaN NaN NaN https://twitter.com/dog_rates/status/836989968... 12 10 Mookie floofer https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
958 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... NaN NaN NaN https://twitter.com/dog_rates/status/836989968... 12 10 Mookie pupper https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
959 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... NaN NaN NaN https://twitter.com/dog_rates/status/836989968... 12 10 Mookie puppo https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
961 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... NaN NaN NaN https://twitter.com/dog_rates/status/836753516... 12 10 Meera floofer https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
962 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... NaN NaN NaN https://twitter.com/dog_rates/status/836753516... 12 10 Meera pupper https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
963 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... NaN NaN NaN https://twitter.com/dog_rates/status/836753516... 12 10 Meera puppo https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
965 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... NaN NaN NaN https://twitter.com/dog_rates/status/836677758... 11 10 Oliver floofer https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
966 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... NaN NaN NaN https://twitter.com/dog_rates/status/836677758... 11 10 Oliver pupper https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
967 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... NaN NaN NaN https://twitter.com/dog_rates/status/836677758... 11 10 Oliver puppo https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
969 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... NaN NaN NaN https://twitter.com/dog_rates/status/836380477... 12 10 Ava floofer https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
970 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... NaN NaN NaN https://twitter.com/dog_rates/status/836380477... 12 10 Ava pupper https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
971 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... NaN NaN NaN https://twitter.com/dog_rates/status/836380477... 12 10 Ava puppo https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
973 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... NaN NaN NaN https://twitter.com/dog_rates/status/836260088... 13 10 Lucy floofer https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
974 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... NaN NaN NaN https://twitter.com/dog_rates/status/836260088... 13 10 Lucy pupper https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
975 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... NaN NaN NaN https://twitter.com/dog_rates/status/836260088... 13 10 Lucy puppo https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
977 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... NaN NaN NaN https://twitter.com/dog_rates/status/836001077... 13 10 None floofer https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
978 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... NaN NaN NaN https://twitter.com/dog_rates/status/836001077... 13 10 None pupper https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
979 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... NaN NaN NaN https://twitter.com/dog_rates/status/836001077... 13 10 None puppo https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
981 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... NaN NaN NaN https://twitter.com/dog_rates/status/835574547... 11 10 Eli floofer https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
982 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... NaN NaN NaN https://twitter.com/dog_rates/status/835574547... 11 10 Eli pupper https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
983 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... NaN NaN NaN https://twitter.com/dog_rates/status/835574547... 11 10 Eli puppo https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
985 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... NaN NaN NaN https://twitter.com/dog_rates/status/835297930... 12 10 Ash floofer https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
986 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... NaN NaN NaN https://twitter.com/dog_rates/status/835297930... 12 10 Ash pupper https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
987 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... NaN NaN NaN https://twitter.com/dog_rates/status/835297930... 12 10 Ash puppo https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
989 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... NaN NaN NaN https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola floofer https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
990 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... NaN NaN NaN https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola pupper https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
991 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... NaN NaN NaN https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola puppo https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
993 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... NaN NaN NaN https://twitter.com/dog_rates/status/835172783... 12 10 None floofer https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
994 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... NaN NaN NaN https://twitter.com/dog_rates/status/835172783... 12 10 None pupper https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
995 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... NaN NaN NaN https://twitter.com/dog_rates/status/835172783... 12 10 None puppo https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
997 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... NaN NaN NaN https://twitter.com/dog_rates/status/835152434... 0 10 None floofer https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
998 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... NaN NaN NaN https://twitter.com/dog_rates/status/835152434... 0 10 None pupper https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
999 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... NaN NaN NaN https://twitter.com/dog_rates/status/835152434... 0 10 None puppo https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
1001 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He decided it was time to part... NaN NaN NaN https://twitter.com/dog_rates/status/834931633... 12 10 Tucker floofer https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 ice_bear 0.330573 False soft-coated_wheaten_terrier 1.964760e-01 True Irish_terrier 7.309650e-02 True 1878 11838
1002 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He decided it was time to part... NaN NaN NaN https://twitter.com/dog_rates/status/834931633... 12 10 Tucker pupper https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 ice_bear 0.330573 False soft-coated_wheaten_terrier 1.964760e-01 True Irish_terrier 7.309650e-02 True 1878 11838
1003 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He decided it was time to part... NaN NaN NaN https://twitter.com/dog_rates/status/834931633... 12 10 Tucker puppo https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 ice_bear 0.330573 False soft-coated_wheaten_terrier 1.964760e-01 True Irish_terrier 7.309650e-02 True 1878 11838
1005 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tobi. She is properly fetching her sho... NaN NaN NaN https://twitter.com/dog_rates/status/834786237... 13 10 Tobi floofer https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 Border_terrier 0.156276 True Norwegian_elkhound 1.259120e-01 True Boston_bull 9.662390e-02 True 6159 22943
1006 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tobi. She is properly fetching her sho... NaN NaN NaN https://twitter.com/dog_rates/status/834786237... 13 10 Tobi pupper https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 Border_terrier 0.156276 True Norwegian_elkhound 1.259120e-01 True Boston_bull 9.662390e-02 True 6159 22943
1007 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tobi. She is properly fetching her sho... NaN NaN NaN https://twitter.com/dog_rates/status/834786237... 13 10 Tobi puppo https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 Border_terrier 0.156276 True Norwegian_elkhound 1.259120e-01 True Boston_bull 9.662390e-02 True 6159 22943
1009 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo fully pupared for a shower. H*c... NaN NaN NaN https://twitter.com/dog_rates/status/834574053... 13 10 None floofer https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 toilet_tissue 0.262936 False golden_retriever 2.265640e-01 True bathtub 7.887900e-02 False 2882 14993
1010 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo fully pupared for a shower. H*c... NaN NaN NaN https://twitter.com/dog_rates/status/834574053... 13 10 None pupper https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 toilet_tissue 0.262936 False golden_retriever 2.265640e-01 True bathtub 7.887900e-02 False 2882 14993
1011 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo fully pupared for a shower. H*c... NaN NaN NaN https://twitter.com/dog_rates/status/834574053... 13 10 None puppo https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 toilet_tissue 0.262936 False golden_retriever 2.265640e-01 True bathtub 7.887900e-02 False 2882 14993
1013 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester (bottom) &amp; Harold (top). They... NaN NaN NaN https://twitter.com/dog_rates/status/834458053... 12 10 Chester floofer https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 Rhodesian_ridgeback 0.468619 True whippet 1.775310e-01 True redbone 1.065520e-01 True 1899 10512
1014 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester (bottom) &amp; Harold (top). They... NaN NaN NaN https://twitter.com/dog_rates/status/834458053... 12 10 Chester pupper https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 Rhodesian_ridgeback 0.468619 True whippet 1.775310e-01 True redbone 1.065520e-01 True 1899 10512
1015 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester (bottom) &amp; Harold (top). They... NaN NaN NaN https://twitter.com/dog_rates/status/834458053... 12 10 Chester puppo https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 Rhodesian_ridgeback 0.468619 True whippet 1.775310e-01 True redbone 1.065520e-01 True 1899 10512
1017 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. He's aware that he has somethi... NaN NaN NaN https://twitter.com/dog_rates/status/834209720... 12 10 Wilson floofer https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 golden_retriever 0.754799 True Pekinese 1.978610e-01 True Labrador_retriever 8.654040e-03 True 5476 22594
1018 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. He's aware that he has somethi... NaN NaN NaN https://twitter.com/dog_rates/status/834209720... 12 10 Wilson pupper https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 golden_retriever 0.754799 True Pekinese 1.978610e-01 True Labrador_retriever 8.654040e-03 True 5476 22594
1019 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. He's aware that he has somethi... NaN NaN NaN https://twitter.com/dog_rates/status/834209720... 12 10 Wilson puppo https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 golden_retriever 0.754799 True Pekinese 1.978610e-01 True Labrador_retriever 8.654040e-03 True 5476 22594
1021 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunshine. She doesn't believe in perso... NaN NaN NaN https://twitter.com/dog_rates/status/834167344... 11 10 Sunshine floofer https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 ox 0.991682 False bison 5.334520e-03 False water_buffalo 1.130250e-03 False 4130 17194
1022 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunshine. She doesn't believe in perso... NaN NaN NaN https://twitter.com/dog_rates/status/834167344... 11 10 Sunshine pupper https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 ox 0.991682 False bison 5.334520e-03 False water_buffalo 1.130250e-03 False 4130 17194
1023 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunshine. She doesn't believe in perso... NaN NaN NaN https://twitter.com/dog_rates/status/834167344... 11 10 Sunshine puppo https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 ox 0.991682 False bison 5.334520e-03 False water_buffalo 1.130250e-03 False 4130 17194
1025 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lipton. He's a West Romanian Snuggle P... NaN NaN NaN https://twitter.com/dog_rates/status/834086379... 12 10 Lipton floofer https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 bath_towel 0.736759 False sleeping_bag 6.295910e-02 False Labrador_retriever 4.526270e-02 True 2512 14296
1026 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lipton. He's a West Romanian Snuggle P... NaN NaN NaN https://twitter.com/dog_rates/status/834086379... 12 10 Lipton pupper https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 bath_towel 0.736759 False sleeping_bag 6.295910e-02 False Labrador_retriever 4.526270e-02 True 2512 14296
1027 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lipton. He's a West Romanian Snuggle P... NaN NaN NaN https://twitter.com/dog_rates/status/834086379... 12 10 Lipton puppo https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 bath_towel 0.736759 False sleeping_bag 6.295910e-02 False Labrador_retriever 4.526270e-02 True 2512 14296
1029 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. Hairbrushes are his favorite ... NaN NaN NaN https://twitter.com/dog_rates/status/833863086... 12 10 Bentley floofer https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 kuvasz 0.494969 True Great_Pyrenees 3.126320e-01 True golden_retriever 1.417360e-01 True 2729 14661
1030 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. Hairbrushes are his favorite ... NaN NaN NaN https://twitter.com/dog_rates/status/833863086... 12 10 Bentley pupper https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 kuvasz 0.494969 True Great_Pyrenees 3.126320e-01 True golden_retriever 1.417360e-01 True 2729 14661
1031 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. Hairbrushes are his favorite ... NaN NaN NaN https://twitter.com/dog_rates/status/833863086... 12 10 Bentley puppo https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 kuvasz 0.494969 True Great_Pyrenees 3.126320e-01 True golden_retriever 1.417360e-01 True 2729 14661
1033 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. She asked u to change the channe... NaN NaN NaN https://twitter.com/dog_rates/status/833826103... 13 10 Charlie floofer https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 Chihuahua 0.438054 True kelpie 1.497060e-01 True Pembroke 9.648050e-02 True 3904 16728
1034 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. She asked u to change the channe... NaN NaN NaN https://twitter.com/dog_rates/status/833826103... 13 10 Charlie pupper https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 Chihuahua 0.438054 True kelpie 1.497060e-01 True Pembroke 9.648050e-02 True 3904 16728
1035 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. She asked u to change the channe... NaN NaN NaN https://twitter.com/dog_rates/status/833826103... 13 10 Charlie puppo https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 Chihuahua 0.438054 True kelpie 1.497060e-01 True Pembroke 9.648050e-02 True 3904 16728
1037 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bronte. She's fairly h*ckin aerodynami... NaN NaN NaN https://twitter.com/dog_rates/status/833722901... 13 10 Bronte floofer https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West_Highland_white_terrier 0.918144 True Maltese_dog 2.572070e-02 True Lakeland_terrier 2.021110e-02 True 3636 22585
1038 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bronte. She's fairly h*ckin aerodynami... NaN NaN NaN https://twitter.com/dog_rates/status/833722901... 13 10 Bronte pupper https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West_Highland_white_terrier 0.918144 True Maltese_dog 2.572070e-02 True Lakeland_terrier 2.021110e-02 True 3636 22585
1039 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bronte. She's fairly h*ckin aerodynami... NaN NaN NaN https://twitter.com/dog_rates/status/833722901... 13 10 Bronte puppo https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West_Highland_white_terrier 0.918144 True Maltese_dog 2.572070e-02 True Lakeland_terrier 2.021110e-02 True 3636 22585
1041 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Poppy. She just arrived. 13/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/833479644... 13 10 Poppy floofer https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 3 golden_retriever 0.727039 True cocker_spaniel 7.113980e-02 True Tibetan_mastiff 4.869420e-02 True 2357 16258
1042 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Poppy. She just arrived. 13/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/833479644... 13 10 Poppy pupper https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 3 golden_retriever 0.727039 True cocker_spaniel 7.113980e-02 True Tibetan_mastiff 4.869420e-02 True 2357 16258
1043 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Poppy. She just arrived. 13/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/833479644... 13 10 Poppy puppo https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 3 golden_retriever 0.727039 True cocker_spaniel 7.113980e-02 True Tibetan_mastiff 4.869420e-02 True 2357 16258
1045 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gidget. She's a spy pupper. Stealthy a... NaN NaN NaN https://twitter.com/dog_rates/status/833124694... 12 10 Gidget floofer https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 3 Cardigan 0.710523 True kelpie 1.061020e-01 True shopping_cart 5.547550e-02 False 5513 22133
1046 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gidget. She's a spy pupper. Stealthy a... NaN NaN NaN https://twitter.com/dog_rates/status/833124694... 12 10 Gidget pupper https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 3 Cardigan 0.710523 True kelpie 1.061020e-01 True shopping_cart 5.547550e-02 False 5513 22133
1047 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gidget. She's a spy pupper. Stealthy a... NaN NaN NaN https://twitter.com/dog_rates/status/833124694... 12 10 Gidget puppo https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 3 Cardigan 0.710523 True kelpie 1.061020e-01 True shopping_cart 5.547550e-02 False 5513 22133
1049 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rhino. He arrived at a shelter with an... NaN NaN NaN https://twitter.com/dog_rates/status/832998151... 13 10 Rhino floofer https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 boxer 0.539036 True French_bulldog 3.176170e-01 True bull_mastiff 9.392850e-02 True 2522 14549
1050 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rhino. He arrived at a shelter with an... NaN NaN NaN https://twitter.com/dog_rates/status/832998151... 13 10 Rhino pupper https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 boxer 0.539036 True French_bulldog 3.176170e-01 True bull_mastiff 9.392850e-02 True 2522 14549
1051 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rhino. He arrived at a shelter with an... NaN NaN NaN https://twitter.com/dog_rates/status/832998151... 13 10 Rhino puppo https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 boxer 0.539036 True French_bulldog 3.176170e-01 True bull_mastiff 9.392850e-02 True 2522 14549
1053 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @EmilieGambril: 12/10 h*cking excited about... 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/83276... 12 10 None floofer https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 jersey 0.895698 False sweatshirt 8.908540e-02 False poncho 2.975220e-03 False 43 0
1054 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @EmilieGambril: 12/10 h*cking excited about... 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/83276... 12 10 None pupper https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 jersey 0.895698 False sweatshirt 8.908540e-02 False poncho 2.975220e-03 False 43 0
1055 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @EmilieGambril: 12/10 h*cking excited about... 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/83276... 12 10 None puppo https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 jersey 0.895698 False sweatshirt 8.908540e-02 False poncho 2.975220e-03 False 43 0
1057 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Willow. She's the official strawberry ... NaN NaN NaN https://twitter.com/dog_rates/status/832757312... 13 10 Willow floofer https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 2 Cardigan 0.160888 True Staffordshire_bullterrier 1.594410e-01 True Boston_bull 1.543680e-01 True 4127 18423
1058 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Willow. She's the official strawberry ... NaN NaN NaN https://twitter.com/dog_rates/status/832757312... 13 10 Willow pupper https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 2 Cardigan 0.160888 True Staffordshire_bullterrier 1.594410e-01 True Boston_bull 1.543680e-01 True 4127 18423
1059 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Willow. She's the official strawberry ... NaN NaN NaN https://twitter.com/dog_rates/status/832757312... 13 10 Willow puppo https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 2 Cardigan 0.160888 True Staffordshire_bullterrier 1.594410e-01 True Boston_bull 1.543680e-01 True 4127 18423
1061 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Orion. He just got back from the denti... NaN NaN NaN https://twitter.com/dog_rates/status/832636094... 12 10 Orion floofer https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 Eskimo_dog 0.525032 True Siberian_husky 2.522380e-01 True malamute 2.168390e-01 True 3220 17379
1062 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Orion. He just got back from the denti... NaN NaN NaN https://twitter.com/dog_rates/status/832636094... 12 10 Orion pupper https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 Eskimo_dog 0.525032 True Siberian_husky 2.522380e-01 True malamute 2.168390e-01 True 3220 17379
1063 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Orion. He just got back from the denti... NaN NaN NaN https://twitter.com/dog_rates/status/832636094... 12 10 Orion puppo https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 Eskimo_dog 0.525032 True Siberian_husky 2.522380e-01 True malamute 2.168390e-01 True 3220 17379
1065 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Eevee. She wants to see how you're doi... NaN NaN NaN https://twitter.com/dog_rates/status/832397543... 12 10 Eevee floofer https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 Pekinese 0.988916 True Brabancon_griffon 1.676800e-03 True Siamese_cat 1.125890e-03 False 2548 13126
1066 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Eevee. She wants to see how you're doi... NaN NaN NaN https://twitter.com/dog_rates/status/832397543... 12 10 Eevee pupper https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 Pekinese 0.988916 True Brabancon_griffon 1.676800e-03 True Siamese_cat 1.125890e-03 False 2548 13126
1067 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Eevee. She wants to see how you're doi... NaN NaN NaN https://twitter.com/dog_rates/status/832397543... 12 10 Eevee puppo https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 Pekinese 0.988916 True Brabancon_griffon 1.676800e-03 True Siamese_cat 1.125890e-03 False 2548 13126
1069 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He fell asleep on a heating v... NaN NaN NaN https://twitter.com/dog_rates/status/832369877... 11 10 Charlie floofer https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 kelpie 0.504690 True German_short-haired_pointer 1.052080e-01 True Staffordshire_bullterrier 5.433850e-02 True 3652 18792
1070 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He fell asleep on a heating v... NaN NaN NaN https://twitter.com/dog_rates/status/832369877... 11 10 Charlie pupper https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 kelpie 0.504690 True German_short-haired_pointer 1.052080e-01 True Staffordshire_bullterrier 5.433850e-02 True 3652 18792
1071 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He fell asleep on a heating v... NaN NaN NaN https://twitter.com/dog_rates/status/832369877... 11 10 Charlie puppo https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 kelpie 0.504690 True German_short-haired_pointer 1.052080e-01 True Staffordshire_bullterrier 5.433850e-02 True 3652 18792
1073 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Smiley. He's a blind therapy dogg... NaN NaN NaN https://twitter.com/dog_rates/status/832273440... 14 10 Smiley floofer https://pbs.twimg.com/ext_tw_video_thumb/83227... 1 Pembroke 0.134081 True ice_bear 5.192780e-02 False pug 4.431090e-02 True 2673 12385
1074 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Smiley. He's a blind therapy dogg... NaN NaN NaN https://twitter.com/dog_rates/status/832273440... 14 10 Smiley pupper https://pbs.twimg.com/ext_tw_video_thumb/83227... 1 Pembroke 0.134081 True ice_bear 5.192780e-02 False pug 4.431090e-02 True 2673 12385
1075 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Smiley. He's a blind therapy dogg... NaN NaN NaN https://twitter.com/dog_rates/status/832273440... 14 10 Smiley puppo https://pbs.twimg.com/ext_tw_video_thumb/83227... 1 Pembroke 0.134081 True ice_bear 5.192780e-02 False pug 4.431090e-02 True 2673 12385
1077 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Moreton. He's the Good ... 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476... 13 10 Moreton floofer https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False 10723 0
1078 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Moreton. He's the Good ... 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476... 13 10 Moreton pupper https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False 10723 0
1079 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Moreton. He's the Good ... 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476... 13 10 Moreton puppo https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False 10723 0
1081 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Klein. These pics were ... 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425... 12 10 Klein floofer https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True 11131 0
1082 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Klein. These pics were ... 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425... 12 10 Klein pupper https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True 11131 0
1083 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Klein. These pics were ... 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425... 12 10 Klein puppo https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True 11131 0
1085 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Miguel. He was the only remaining dogg... NaN NaN NaN https://www.petfinder.com/petdetail/34918210,h... 12 10 Miguel floofer https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 whippet 0.601712 True Ibizan_hound 1.526620e-01 True Italian_greyhound 1.350550e-01 True 4746 13887
1086 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Miguel. He was the only remaining dogg... NaN NaN NaN https://www.petfinder.com/petdetail/34918210,h... 12 10 Miguel pupper https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 whippet 0.601712 True Ibizan_hound 1.526620e-01 True Italian_greyhound 1.350550e-01 True 4746 13887
1087 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Miguel. He was the only remaining dogg... NaN NaN NaN https://www.petfinder.com/petdetail/34918210,h... 12 10 Miguel puppo https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 whippet 0.601712 True Ibizan_hound 1.526620e-01 True Italian_greyhound 1.350550e-01 True 4746 13887
1089 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Emanuel. He's a h*ckin rare doggo. Dwe... NaN NaN NaN https://twitter.com/dog_rates/status/831939777... 12 10 Emanuel floofer https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 Pomeranian 0.153862 True marmot 9.123390e-02 False grey_fox 9.064410e-02 False 7031 26404
1090 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Emanuel. He's a h*ckin rare doggo. Dwe... NaN NaN NaN https://twitter.com/dog_rates/status/831939777... 12 10 Emanuel pupper https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 Pomeranian 0.153862 True marmot 9.123390e-02 False grey_fox 9.064410e-02 False 7031 26404
1091 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Emanuel. He's a h*ckin rare doggo. Dwe... NaN NaN NaN https://twitter.com/dog_rates/status/831939777... 12 10 Emanuel puppo https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 Pomeranian 0.153862 True marmot 9.123390e-02 False grey_fox 9.064410e-02 False 7031 26404
1093 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kuyu. He was trapped in a well for 10 day... NaN NaN NaN https://twitter.com/dog_rates/status/831911600... 14 10 Kuyu floofer https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 4 bloodhound 0.777562 True Great_Dane 4.741760e-02 True Leonberg 1.794310e-02 True 7458 30380
1094 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kuyu. He was trapped in a well for 10 day... NaN NaN NaN https://twitter.com/dog_rates/status/831911600... 14 10 Kuyu pupper https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 4 bloodhound 0.777562 True Great_Dane 4.741760e-02 True Leonberg 1.794310e-02 True 7458 30380
1095 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kuyu. He was trapped in a well for 10 day... NaN NaN NaN https://twitter.com/dog_rates/status/831911600... 14 10 Kuyu puppo https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 4 bloodhound 0.777562 True Great_Dane 4.741760e-02 True Leonberg 1.794310e-02 True 7458 30380
1097 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She has a heart on her butt. 13... NaN NaN NaN https://twitter.com/dog_rates/status/831670449... 13 10 Daisy floofer https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 Pembroke 0.624802 True Cardigan 3.628610e-01 True Appenzeller 3.926210e-03 True 2059 11469
1098 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She has a heart on her butt. 13... NaN NaN NaN https://twitter.com/dog_rates/status/831670449... 13 10 Daisy pupper https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 Pembroke 0.624802 True Cardigan 3.628610e-01 True Appenzeller 3.926210e-03 True 2059 11469
1099 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She has a heart on her butt. 13... NaN NaN NaN https://twitter.com/dog_rates/status/831670449... 13 10 Daisy puppo https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 Pembroke 0.624802 True Cardigan 3.628610e-01 True Appenzeller 3.926210e-03 True 2059 11469
1101 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" r... I usually only share these on Friday's, but th... NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,http... 13 10 None floofer https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 Eskimo_dog 0.530416 True Siberian_husky 1.803350e-01 True Norwegian_elkhound 1.043140e-01 True 2243 7908
1102 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" r... I usually only share these on Friday's, but th... NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,http... 13 10 None pupper https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 Eskimo_dog 0.530416 True Siberian_husky 1.803350e-01 True Norwegian_elkhound 1.043140e-01 True 2243 7908
1103 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" r... I usually only share these on Friday's, but th... NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,http... 13 10 None puppo https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 Eskimo_dog 0.530416 True Siberian_husky 1.803350e-01 True Norwegian_elkhound 1.043140e-01 True 2243 7908
1105 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Dutch. He dressed up as his favorite e... NaN NaN NaN https://twitter.com/dog_rates/status/831552930... 13 10 Dutch floofer https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 Chihuahua 0.257415 True Pembroke 1.614420e-01 True French_bulldog 9.214290e-02 True 2632 9872
1106 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Dutch. He dressed up as his favorite e... NaN NaN NaN https://twitter.com/dog_rates/status/831552930... 13 10 Dutch pupper https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 Chihuahua 0.257415 True Pembroke 1.614420e-01 True French_bulldog 9.214290e-02 True 2632 9872
1107 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Dutch. He dressed up as his favorite e... NaN NaN NaN https://twitter.com/dog_rates/status/831552930... 13 10 Dutch puppo https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 Chihuahua 0.257415 True Pembroke 1.614420e-01 True French_bulldog 9.214290e-02 True 2632 9872
1109 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Pete. He has no eyes. Needs a guide do... NaN NaN NaN https://twitter.com/dog_rates/status/831322785... 12 10 Pete floofer https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 Old_English_sheepdog 0.999715 True Tibetan_terrier 4.629670e-05 True guinea_pig 4.118430e-05 False 1744 10042
1110 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Pete. He has no eyes. Needs a guide do... NaN NaN NaN https://twitter.com/dog_rates/status/831322785... 12 10 Pete pupper https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 Old_English_sheepdog 0.999715 True Tibetan_terrier 4.629670e-05 True guinea_pig 4.118430e-05 False 1744 10042
1111 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Pete. He has no eyes. Needs a guide do... NaN NaN NaN https://twitter.com/dog_rates/status/831322785... 12 10 Pete puppo https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 Old_English_sheepdog 0.999715 True Tibetan_terrier 4.629670e-05 True guinea_pig 4.118430e-05 False 1744 10042
1113 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Tw... I couldn't make it to the #WKCDogShow BUT I ha... NaN NaN NaN https://twitter.com/dog_rates/status/831315979... 13 10 None floofer https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 4 briard 0.982755 True soft-coated_wheaten_terrier 9.084350e-03 True Bouvier_des_Flandres 4.692800e-03 True 1264 7117
1114 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Tw... I couldn't make it to the #WKCDogShow BUT I ha... NaN NaN NaN https://twitter.com/dog_rates/status/831315979... 13 10 None pupper https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 4 briard 0.982755 True soft-coated_wheaten_terrier 9.084350e-03 True Bouvier_des_Flandres 4.692800e-03 True 1264 7117
1115 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Tw... I couldn't make it to the #WKCDogShow BUT I ha... NaN NaN NaN https://twitter.com/dog_rates/status/831315979... 13 10 None puppo https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 4 briard 0.982755 True soft-coated_wheaten_terrier 9.084350e-03 True Bouvier_des_Flandres 4.692800e-03 True 1264 7117
1117 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter and his son Montoya. Scooter ... NaN NaN NaN https://twitter.com/dog_rates/status/831309418... 12 10 Scooter floofer https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 Doberman 0.369389 True kelpie 1.324490e-01 True Labrador_retriever 7.472730e-02 True 2786 12819
1118 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter and his son Montoya. Scooter ... NaN NaN NaN https://twitter.com/dog_rates/status/831309418... 12 10 Scooter pupper https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 Doberman 0.369389 True kelpie 1.324490e-01 True Labrador_retriever 7.472730e-02 True 2786 12819
1119 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter and his son Montoya. Scooter ... NaN NaN NaN https://twitter.com/dog_rates/status/831309418... 12 10 Scooter puppo https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 Doberman 0.369389 True kelpie 1.324490e-01 True Labrador_retriever 7.472730e-02 True 2786 12819
1121 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's feeling h*ckin festive an... NaN NaN NaN https://twitter.com/dog_rates/status/831262627... 12 10 Tucker floofer https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 cocker_spaniel 0.263323 True Brittany_spaniel 2.005500e-01 True doormat 1.934140e-01 False 2350 13066
1122 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's feeling h*ckin festive an... NaN NaN NaN https://twitter.com/dog_rates/status/831262627... 12 10 Tucker pupper https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 cocker_spaniel 0.263323 True Brittany_spaniel 2.005500e-01 True doormat 1.934140e-01 False 2350 13066
1123 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's feeling h*ckin festive an... NaN NaN NaN https://twitter.com/dog_rates/status/831262627... 12 10 Tucker puppo https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 cocker_spaniel 0.263323 True Brittany_spaniel 2.005500e-01 True doormat 1.934140e-01 False 2350 13066
1125 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Reggie. He hates puns. 12/10 ligh... NaN NaN NaN https://twitter.com/dog_rates/status/830956169... 12 10 Reggie floofer https://pbs.twimg.com/ext_tw_video_thumb/83095... 1 kuvasz 0.451516 True golden_retriever 3.171960e-01 True English_setter 1.327590e-01 True 1735 8735
1126 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Reggie. He hates puns. 12/10 ligh... NaN NaN NaN https://twitter.com/dog_rates/status/830956169... 12 10 Reggie pupper https://pbs.twimg.com/ext_tw_video_thumb/83095... 1 kuvasz 0.451516 True golden_retriever 3.171960e-01 True English_setter 1.327590e-01 True 1735 8735
1127 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Reggie. He hates puns. 12/10 ligh... NaN NaN NaN https://twitter.com/dog_rates/status/830956169... 12 10 Reggie puppo https://pbs.twimg.com/ext_tw_video_thumb/83095... 1 kuvasz 0.451516 True golden_retriever 3.171960e-01 True English_setter 1.327590e-01 True 1735 8735
1129 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilly. She just parallel barked. Kindl... NaN NaN NaN https://twitter.com/dog_rates/status/830583320... 13 10 Lilly floofer https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 73397
1130 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilly. She just parallel barked. Kindl... NaN NaN NaN https://twitter.com/dog_rates/status/830583320... 13 10 Lilly pupper https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 73397
1131 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilly. She just parallel barked. Kindl... NaN NaN NaN https://twitter.com/dog_rates/status/830583320... 13 10 Lilly puppo https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 73397
1133 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson floofer https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 4 toy_poodle 0.442713 True Pomeranian 1.420730e-01 True Pekinese 1.257450e-01 True 3455 10804
1134 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson pupper https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 4 toy_poodle 0.442713 True Pomeranian 1.420730e-01 True Pekinese 1.257450e-01 True 3455 10804
1135 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson puppo https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 4 toy_poodle 0.442713 True Pomeranian 1.420730e-01 True Pekinese 1.257450e-01 True 3455 10804
1137 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Loki. He smiles like El... 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653... 12 10 Loki floofer https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 0
1138 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Loki. He smiles like El... 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653... 12 10 Loki pupper https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 0
1139 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Loki. He smiles like El... 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653... 12 10 Loki puppo https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 0
1141 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She already knows she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/829861396... 12 10 Mia floofer https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 Border_terrier 0.394486 True Staffordshire_bullterrier 3.765740e-01 True American_Staffordshire_terrier 3.129160e-02 True 2243 13441
1142 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She already knows she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/829861396... 12 10 Mia pupper https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 Border_terrier 0.394486 True Staffordshire_bullterrier 3.765740e-01 True American_Staffordshire_terrier 3.129160e-02 True 2243 13441
1143 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She already knows she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/829861396... 12 10 Mia puppo https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 Border_terrier 0.394486 True Staffordshire_bullterrier 3.765740e-01 True American_Staffordshire_terrier 3.129160e-02 True 2243 13441
1145 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He was a skater pup. She said see... NaN NaN NaN https://twitter.com/dog_rates/status/829501995... 12 10 Leo floofer https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 French_bulldog 0.950851 True Pekinese 1.519960e-02 True pug 1.109360e-02 True 12224 34913
1146 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He was a skater pup. She said see... NaN NaN NaN https://twitter.com/dog_rates/status/829501995... 12 10 Leo pupper https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 French_bulldog 0.950851 True Pekinese 1.519960e-02 True pug 1.109360e-02 True 12224 34913
1147 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He was a skater pup. She said see... NaN NaN NaN https://twitter.com/dog_rates/status/829501995... 12 10 Leo puppo https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 French_bulldog 0.950851 True Pekinese 1.519960e-02 True pug 1.109360e-02 True 12224 34913
1149 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" r... Here's a stressed doggo. Had a long day. Many ... NaN NaN NaN https://twitter.com/dog_rates/status/829449946... 11 10 None floofer https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 Labrador_retriever 0.315163 True golden_retriever 1.532100e-01 True Pekinese 1.327910e-01 True 2329 11519
1150 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" r... Here's a stressed doggo. Had a long day. Many ... NaN NaN NaN https://twitter.com/dog_rates/status/829449946... 11 10 None pupper https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 Labrador_retriever 0.315163 True golden_retriever 1.532100e-01 True Pekinese 1.327910e-01 True 2329 11519
1151 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" r... Here's a stressed doggo. Had a long day. Many ... NaN NaN NaN https://twitter.com/dog_rates/status/829449946... 11 10 None puppo https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 Labrador_retriever 0.315163 True golden_retriever 1.532100e-01 True Pekinese 1.327910e-01 True 2329 11519
1153 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Astrid. She's a guide doggo in trainin... NaN NaN NaN https://twitter.com/dog_rates/status/829374341... 13 10 Astrid floofer https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 38074
1154 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Astrid. She's a guide doggo in trainin... NaN NaN NaN https://twitter.com/dog_rates/status/829374341... 13 10 Astrid pupper https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 38074
1155 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Astrid. She's a guide doggo in trainin... NaN NaN NaN https://twitter.com/dog_rates/status/829374341... 13 10 Astrid puppo https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 38074
1157 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He goes from sneaky tongue sl... NaN NaN NaN https://twitter.com/dog_rates/status/829141528... 12 10 Malcolm floofer https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 2 golden_retriever 0.573140 True cocker_spaniel 1.111590e-01 True gibbon 9.412690e-02 False 8530 26952
1158 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He goes from sneaky tongue sl... NaN NaN NaN https://twitter.com/dog_rates/status/829141528... 12 10 Malcolm pupper https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 2 golden_retriever 0.573140 True cocker_spaniel 1.111590e-01 True gibbon 9.412690e-02 False 8530 26952
1159 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He goes from sneaky tongue sl... NaN NaN NaN https://twitter.com/dog_rates/status/829141528... 12 10 Malcolm puppo https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 2 golden_retriever 0.573140 True cocker_spaniel 1.111590e-01 True gibbon 9.412690e-02 False 8530 26952
1161 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He was reunited with his mom y... NaN NaN NaN https://twitter.com/dog_rates/status/829011960... 13 10 Dexter floofer https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 2 boxer 0.312221 True dalmatian 2.440400e-01 True conch 1.302730e-01 False 18627 58302
1162 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He was reunited with his mom y... NaN NaN NaN https://twitter.com/dog_rates/status/829011960... 13 10 Dexter pupper https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 2 boxer 0.312221 True dalmatian 2.440400e-01 True conch 1.302730e-01 False 18627 58302
1163 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He was reunited with his mom y... NaN NaN NaN https://twitter.com/dog_rates/status/829011960... 13 10 Dexter puppo https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 2 boxer 0.312221 True dalmatian 2.440400e-01 True conch 1.302730e-01 False 18627 58302
1165 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's your Lyft for tonight. Kin... NaN NaN NaN https://twitter.com/dog_rates/status/828770345... 13 10 Alfie floofer https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 seat_belt 0.765979 False Chesapeake_Bay_retriever 3.389860e-02 True polecat 2.725160e-02 False 6746 28085
1166 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's your Lyft for tonight. Kin... NaN NaN NaN https://twitter.com/dog_rates/status/828770345... 13 10 Alfie pupper https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 seat_belt 0.765979 False Chesapeake_Bay_retriever 3.389860e-02 True polecat 2.725160e-02 False 6746 28085
1167 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's your Lyft for tonight. Kin... NaN NaN NaN https://twitter.com/dog_rates/status/828770345... 13 10 Alfie puppo https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 seat_belt 0.765979 False Chesapeake_Bay_retriever 3.389860e-02 True polecat 2.725160e-02 False 6746 28085
1169 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an exotic dog. Seems rath... NaN NaN NaN https://twitter.com/dog_rates/status/828708714... 10 10 Fiona floofer https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 hippopotamus 0.942911 False Mexican_hairless 8.388370e-03 True ice_lolly 6.206470e-03 False 12882 40241
1170 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an exotic dog. Seems rath... NaN NaN NaN https://twitter.com/dog_rates/status/828708714... 10 10 Fiona pupper https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 hippopotamus 0.942911 False Mexican_hairless 8.388370e-03 True ice_lolly 6.206470e-03 False 12882 40241
1171 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an exotic dog. Seems rath... NaN NaN NaN https://twitter.com/dog_rates/status/828708714... 10 10 Fiona puppo https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 hippopotamus 0.942911 False Mexican_hairless 8.388370e-03 True ice_lolly 6.206470e-03 False 12882 40241
1173 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" r... Occasionally, we're sent fantastic stories. Th... NaN NaN NaN https://twitter.com/dog_rates/status/828650029... 14 10 one floofer https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 golden_retriever 0.649209 True Chesapeake_Bay_retriever 1.985600e-01 True vizsla 5.619990e-02 True 1544 10467
1174 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" r... Occasionally, we're sent fantastic stories. Th... NaN NaN NaN https://twitter.com/dog_rates/status/828650029... 14 10 one pupper https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 golden_retriever 0.649209 True Chesapeake_Bay_retriever 1.985600e-01 True vizsla 5.619990e-02 True 1544 10467
1175 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" r... Occasionally, we're sent fantastic stories. Th... NaN NaN NaN https://twitter.com/dog_rates/status/828650029... 14 10 one puppo https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 golden_retriever 0.649209 True Chesapeake_Bay_retriever 1.985600e-01 True vizsla 5.619990e-02 True 1544 10467
1177 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mutt Ryan. He's quite confident at the... NaN NaN NaN https://twitter.com/dog_rates/status/828409743... 12 10 Mutt floofer https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 teddy 0.908457 False toy_poodle 1.803980e-02 True standard_poodle 1.266710e-02 True 1305 6898
1178 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mutt Ryan. He's quite confident at the... NaN NaN NaN https://twitter.com/dog_rates/status/828409743... 12 10 Mutt pupper https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 teddy 0.908457 False toy_poodle 1.803980e-02 True standard_poodle 1.266710e-02 True 1305 6898
1179 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mutt Ryan. He's quite confident at the... NaN NaN NaN https://twitter.com/dog_rates/status/828409743... 12 10 Mutt puppo https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 teddy 0.908457 False toy_poodle 1.803980e-02 True standard_poodle 1.266710e-02 True 1305 6898
1181 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He went outside to play in the s... NaN NaN NaN https://twitter.com/dog_rates/status/828408677... 12 10 Bear floofer https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 Weimaraner 0.133033 True Chesapeake_Bay_retriever 9.222700e-02 True American_Staffordshire_terrier 6.509450e-02 True 1477 8398
1182 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He went outside to play in the s... NaN NaN NaN https://twitter.com/dog_rates/status/828408677... 12 10 Bear pupper https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 Weimaraner 0.133033 True Chesapeake_Bay_retriever 9.222700e-02 True American_Staffordshire_terrier 6.509450e-02 True 1477 8398
1183 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He went outside to play in the s... NaN NaN NaN https://twitter.com/dog_rates/status/828408677... 12 10 Bear puppo https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 Weimaraner 0.133033 True Chesapeake_Bay_retriever 9.222700e-02 True American_Staffordshire_terrier 6.509450e-02 True 1477 8398
1185 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Doobert. He's a deaf doggo. Didn't stop h... NaN NaN NaN https://twitter.com/dog_rates/status/828381636... 14 10 Doobert floofer https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 Bedlington_terrier 0.392535 True Labrador_retriever 8.902170e-02 True clumber 8.179980e-02 True 2554 13864
1186 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Doobert. He's a deaf doggo. Didn't stop h... NaN NaN NaN https://twitter.com/dog_rates/status/828381636... 14 10 Doobert pupper https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 Bedlington_terrier 0.392535 True Labrador_retriever 8.902170e-02 True clumber 8.179980e-02 True 2554 13864
1187 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Doobert. He's a deaf doggo. Didn't stop h... NaN NaN NaN https://twitter.com/dog_rates/status/828381636... 14 10 Doobert puppo https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 Bedlington_terrier 0.392535 True Labrador_retriever 8.902170e-02 True clumber 8.179980e-02 True 2554 13864
1189 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Beebop. Her name means "Good Dog" in r... NaN NaN NaN https://twitter.com/dog_rates/status/828376505... 13 10 Beebop floofer https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 American_Staffordshire_terrier 0.523086 True Staffordshire_bullterrier 1.861680e-01 True Chihuahua 4.208940e-02 True 1216 8112
1190 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Beebop. Her name means "Good Dog" in r... NaN NaN NaN https://twitter.com/dog_rates/status/828376505... 13 10 Beebop pupper https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 American_Staffordshire_terrier 0.523086 True Staffordshire_bullterrier 1.861680e-01 True Chihuahua 4.208940e-02 True 1216 8112
1191 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Beebop. Her name means "Good Dog" in r... NaN NaN NaN https://twitter.com/dog_rates/status/828376505... 13 10 Beebop puppo https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 American_Staffordshire_terrier 0.523086 True Staffordshire_bullterrier 1.861680e-01 True Chihuahua 4.208940e-02 True 1216 8112
1193 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexander Hamilpup. He was one of the ... NaN NaN NaN https://twitter.com/dog_rates/status/828372645... 12 10 Alexander floofer https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 malamute 0.663047 True Eskimo_dog 2.077790e-01 True Tibetan_mastiff 4.094880e-02 True 3344 13756
1194 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexander Hamilpup. He was one of the ... NaN NaN NaN https://twitter.com/dog_rates/status/828372645... 12 10 Alexander pupper https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 malamute 0.663047 True Eskimo_dog 2.077790e-01 True Tibetan_mastiff 4.094880e-02 True 3344 13756
1195 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexander Hamilpup. He was one of the ... NaN NaN NaN https://twitter.com/dog_rates/status/828372645... 12 10 Alexander puppo https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 malamute 0.663047 True Eskimo_dog 2.077790e-01 True Tibetan_mastiff 4.094880e-02 True 3344 13756
1197 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailer. He waits on the roof for his o... NaN NaN NaN https://twitter.com/dog_rates/status/828046555... 13 10 Sailer floofer https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 patio 0.272972 False window_screen 1.312950e-01 False boathouse 4.639250e-02 False 3260 12923
1198 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailer. He waits on the roof for his o... NaN NaN NaN https://twitter.com/dog_rates/status/828046555... 13 10 Sailer pupper https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 patio 0.272972 False window_screen 1.312950e-01 False boathouse 4.639250e-02 False 3260 12923
1199 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailer. He waits on the roof for his o... NaN NaN NaN https://twitter.com/dog_rates/status/828046555... 13 10 Sailer puppo https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 patio 0.272972 False window_screen 1.312950e-01 False boathouse 4.639250e-02 False 3260 12923
1201 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brutus and Jersey. They think the... NaN NaN NaN https://twitter.com/dog_rates/status/828011680... 11 10 Brutus floofer https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 American_Staffordshire_terrier 0.936662 True Staffordshire_bullterrier 3.299910e-02 True bull_mastiff 1.718340e-02 True 2451 11411
1202 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brutus and Jersey. They think the... NaN NaN NaN https://twitter.com/dog_rates/status/828011680... 11 10 Brutus pupper https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 American_Staffordshire_terrier 0.936662 True Staffordshire_bullterrier 3.299910e-02 True bull_mastiff 1.718340e-02 True 2451 11411
1203 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brutus and Jersey. They think the... NaN NaN NaN https://twitter.com/dog_rates/status/828011680... 11 10 Brutus puppo https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 American_Staffordshire_terrier 0.936662 True Staffordshire_bullterrier 3.299910e-02 True bull_mastiff 1.718340e-02 True 2451 11411
1205 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kona. Yesterday she stopped by the dep... NaN NaN NaN https://twitter.com/dog_rates/status/827933404... 12 10 Kona floofer https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 2 German_shepherd 0.806115 True Tibetan_mastiff 1.048310e-01 True kelpie 3.814820e-02 True 5987 22180
1206 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kona. Yesterday she stopped by the dep... NaN NaN NaN https://twitter.com/dog_rates/status/827933404... 12 10 Kona pupper https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 2 German_shepherd 0.806115 True Tibetan_mastiff 1.048310e-01 True kelpie 3.814820e-02 True 5987 22180
1207 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kona. Yesterday she stopped by the dep... NaN NaN NaN https://twitter.com/dog_rates/status/827933404... 12 10 Kona puppo https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 2 German_shepherd 0.806115 True Tibetan_mastiff 1.048310e-01 True kelpie 3.814820e-02 True 5987 22180
1209 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Boots. She doesn't know what to do wit... NaN NaN NaN https://twitter.com/dog_rates/status/827653905... 12 10 Boots floofer https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 collie 0.285555 True Border_collie 2.173060e-01 True Saint_Bernard 1.432450e-01 True 3433 16983
1210 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Boots. She doesn't know what to do wit... NaN NaN NaN https://twitter.com/dog_rates/status/827653905... 12 10 Boots pupper https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 collie 0.285555 True Border_collie 2.173060e-01 True Saint_Bernard 1.432450e-01 True 3433 16983
1211 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Boots. She doesn't know what to do wit... NaN NaN NaN https://twitter.com/dog_rates/status/827653905... 12 10 Boots puppo https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 collie 0.285555 True Border_collie 2.173060e-01 True Saint_Bernard 1.432450e-01 True 3433 16983
1213 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tucker. It's his birthday. He's pupset wi... NaN NaN NaN https://twitter.com/dog_rates/status/827600520... 13 10 Tucker floofer https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 Pembroke 0.325638 True golden_retriever 3.172350e-01 True Labrador_retriever 1.160870e-01 True 1082 8143
1214 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tucker. It's his birthday. He's pupset wi... NaN NaN NaN https://twitter.com/dog_rates/status/827600520... 13 10 Tucker pupper https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 Pembroke 0.325638 True golden_retriever 3.172350e-01 True Labrador_retriever 1.160870e-01 True 1082 8143
1215 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tucker. It's his birthday. He's pupset wi... NaN NaN NaN https://twitter.com/dog_rates/status/827600520... 13 10 Tucker puppo https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 Pembroke 0.325638 True golden_retriever 3.172350e-01 True Labrador_retriever 1.160870e-01 True 1082 8143
1217 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphie. He's being treated for an ove... NaN NaN NaN https://twitter.com/dog_rates/status/827324948... 12 10 Ralphie floofer https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 golden_retriever 0.352486 True toy_poodle 1.788840e-01 True Labrador_retriever 8.416440e-02 True 3510 17523
1218 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphie. He's being treated for an ove... NaN NaN NaN https://twitter.com/dog_rates/status/827324948... 12 10 Ralphie pupper https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 golden_retriever 0.352486 True toy_poodle 1.788840e-01 True Labrador_retriever 8.416440e-02 True 3510 17523
1219 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphie. He's being treated for an ove... NaN NaN NaN https://twitter.com/dog_rates/status/827324948... 12 10 Ralphie puppo https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 golden_retriever 0.352486 True toy_poodle 1.788840e-01 True Labrador_retriever 8.416440e-02 True 3510 17523
1221 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wins every game of chess h... NaN NaN NaN https://twitter.com/dog_rates/status/827199976... 13 10 Charlie floofer https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 4 Great_Dane 0.869681 True American_Staffordshire_terrier 2.665820e-02 True boxer 1.986610e-02 True 2579 11659
1222 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wins every game of chess h... NaN NaN NaN https://twitter.com/dog_rates/status/827199976... 13 10 Charlie pupper https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 4 Great_Dane 0.869681 True American_Staffordshire_terrier 2.665820e-02 True boxer 1.986610e-02 True 2579 11659
1223 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wins every game of chess h... NaN NaN NaN https://twitter.com/dog_rates/status/827199976... 13 10 Charlie puppo https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 4 Great_Dane 0.869681 True American_Staffordshire_terrier 2.665820e-02 True boxer 1.986610e-02 True 2579 11659
1225 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He smiles like Elvis. Ain't noth... NaN NaN NaN https://twitter.com/dog_rates/status/826958653... 12 10 Loki floofer https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 23767
1226 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He smiles like Elvis. Ain't noth... NaN NaN NaN https://twitter.com/dog_rates/status/826958653... 12 10 Loki pupper https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 23767
1227 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He smiles like Elvis. Ain't noth... NaN NaN NaN https://twitter.com/dog_rates/status/826958653... 12 10 Loki puppo https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False 5757 23767
1229 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cupid. He was found in the trash. Now ... NaN NaN NaN https://twitter.com/dog_rates/status/826848821... 13 10 Cupid floofer https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 4 Great_Pyrenees 0.858764 True golden_retriever 2.352570e-02 True Pekinese 1.710390e-02 True 11878 40325
1230 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cupid. He was found in the trash. Now ... NaN NaN NaN https://twitter.com/dog_rates/status/826848821... 13 10 Cupid pupper https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 4 Great_Pyrenees 0.858764 True golden_retriever 2.352570e-02 True Pekinese 1.710390e-02 True 11878 40325
1231 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cupid. He was found in the trash. Now ... NaN NaN NaN https://twitter.com/dog_rates/status/826848821... 13 10 Cupid puppo https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 4 Great_Pyrenees 0.858764 True golden_retriever 2.352570e-02 True Pekinese 1.710390e-02 True 11878 40325
1233 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pawnd... James Pawnd. He's suave af. 1... NaN NaN NaN https://twitter.com/dog_rates/status/826598365... 13 10 Pawnd floofer https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 French_bulldog 0.628119 True Siamese_cat 1.173970e-01 False cougar 8.276490e-02 False 2709 11117
1234 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pawnd... James Pawnd. He's suave af. 1... NaN NaN NaN https://twitter.com/dog_rates/status/826598365... 13 10 Pawnd pupper https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 French_bulldog 0.628119 True Siamese_cat 1.173970e-01 False cougar 8.276490e-02 False 2709 11117
1235 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pawnd... James Pawnd. He's suave af. 1... NaN NaN NaN https://twitter.com/dog_rates/status/826598365... 13 10 Pawnd puppo https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 French_bulldog 0.628119 True Siamese_cat 1.173970e-01 False cougar 8.276490e-02 False 2709 11117
1237 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Pilot. He has mastered the synchronize... NaN NaN NaN https://twitter.com/dog_rates/status/826476773... 12 10 Pilot floofer https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 German_shepherd 0.741860 True Tibetan_mastiff 1.228120e-01 True kelpie 1.004600e-01 True 4821 20275
1238 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Pilot. He has mastered the synchronize... NaN NaN NaN https://twitter.com/dog_rates/status/826476773... 12 10 Pilot pupper https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 German_shepherd 0.741860 True Tibetan_mastiff 1.228120e-01 True kelpie 1.004600e-01 True 4821 20275
1239 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Pilot. He has mastered the synchronize... NaN NaN NaN https://twitter.com/dog_rates/status/826476773... 12 10 Pilot puppo https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 German_shepherd 0.741860 True Tibetan_mastiff 1.228120e-01 True kelpie 1.004600e-01 True 4821 20275
1241 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any mo... NaN NaN NaN https://twitter.com/dog_rates/status/826240494... 11 10 None floofer https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 French_bulldog 0.903048 True pug 9.624210e-02 True Boston_bull 2.343640e-04 True 2965 14614
1242 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any mo... NaN NaN NaN https://twitter.com/dog_rates/status/826240494... 11 10 None pupper https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 French_bulldog 0.903048 True pug 9.624210e-02 True Boston_bull 2.343640e-04 True 2965 14614
1243 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any mo... NaN NaN NaN https://twitter.com/dog_rates/status/826240494... 11 10 None puppo https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 French_bulldog 0.903048 True pug 9.624210e-02 True Boston_bull 2.343640e-04 True 2965 14614
1245 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a little more info on Dew, your favorit... NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentuc... 13 10 None floofer https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 2 Labrador_retriever 0.782058 True golden_retriever 1.565810e-01 True soft-coated_wheaten_terrier 7.275120e-03 True 1075 5361
1246 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a little more info on Dew, your favorit... NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentuc... 13 10 None pupper https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 2 Labrador_retriever 0.782058 True golden_retriever 1.565810e-01 True soft-coated_wheaten_terrier 7.275120e-03 True 1075 5361
1247 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a little more info on Dew, your favorit... NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentuc... 13 10 None puppo https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 2 Labrador_retriever 0.782058 True golden_retriever 1.565810e-01 True soft-coated_wheaten_terrier 7.275120e-03 True 1075 5361
1249 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Ike. He's demonstrating the pupmost re... NaN NaN NaN https://twitter.com/dog_rates/status/826115272... 13 10 Ike floofer https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 tennis_ball 0.997071 False golden_retriever 2.330850e-03 True kuvasz 2.834720e-04 True 3599 17299
1250 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Ike. He's demonstrating the pupmost re... NaN NaN NaN https://twitter.com/dog_rates/status/826115272... 13 10 Ike pupper https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 tennis_ball 0.997071 False golden_retriever 2.330850e-03 True kuvasz 2.834720e-04 True 3599 17299
1251 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Ike. He's demonstrating the pupmost re... NaN NaN NaN https://twitter.com/dog_rates/status/826115272... 13 10 Ike puppo https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 tennis_ball 0.997071 False golden_retriever 2.330850e-03 True kuvasz 2.834720e-04 True 3599 17299
1253 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Mo. No one will push him around in the... NaN NaN NaN https://twitter.com/dog_rates/status/825876512... 11 10 Mo floofer https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 shopping_cart 0.995941 False shopping_basket 4.056970e-03 False mousetrap 8.832830e-07 False 2146 11525
1254 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Mo. No one will push him around in the... NaN NaN NaN https://twitter.com/dog_rates/status/825876512... 11 10 Mo pupper https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 shopping_cart 0.995941 False shopping_basket 4.056970e-03 False mousetrap 8.832830e-07 False 2146 11525
1255 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Mo. No one will push him around in the... NaN NaN NaN https://twitter.com/dog_rates/status/825876512... 11 10 Mo puppo https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 shopping_cart 0.995941 False shopping_basket 4.056970e-03 False mousetrap 8.832830e-07 False 2146 11525
1257 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He just found out you only prete... NaN NaN NaN https://twitter.com/dog_rates/status/825829644... 12 10 Toby floofer https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 2 Great_Pyrenees 0.853407 True golden_retriever 5.353130e-02 True English_setter 4.582990e-02 True 2848 14025
1258 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He just found out you only prete... NaN NaN NaN https://twitter.com/dog_rates/status/825829644... 12 10 Toby pupper https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 2 Great_Pyrenees 0.853407 True golden_retriever 5.353130e-02 True English_setter 4.582990e-02 True 2848 14025
1259 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He just found out you only prete... NaN NaN NaN https://twitter.com/dog_rates/status/825829644... 12 10 Toby puppo https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 2 Great_Pyrenees 0.853407 True golden_retriever 5.353130e-02 True English_setter 4.582990e-02 True 2848 14025
1261 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very loving and accepting puppo. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/825535076... 14 10 None floofer https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 Rottweiler 0.681495 True Tibetan_mastiff 1.479400e-01 True black-and-tan_coonhound 2.452520e-02 True 19669 56413
1262 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very loving and accepting puppo. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/825535076... 14 10 None pupper https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 Rottweiler 0.681495 True Tibetan_mastiff 1.479400e-01 True black-and-tan_coonhound 2.452520e-02 True 19669 56413
1263 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very loving and accepting puppo. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/825535076... 14 10 None puppo https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 Rottweiler 0.681495 True Tibetan_mastiff 1.479400e-01 True black-and-tan_coonhound 2.452520e-02 True 19669 56413
1265 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Sweet Pea. She hides in shoe boxes and... NaN NaN NaN https://twitter.com/dog_rates/status/825147591... 13 10 Sweet floofer https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 Pekinese 0.354823 True Pomeranian 2.453900e-01 True toy_poodle 1.365450e-01 True 5244 20181
1266 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Sweet Pea. She hides in shoe boxes and... NaN NaN NaN https://twitter.com/dog_rates/status/825147591... 13 10 Sweet pupper https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 Pekinese 0.354823 True Pomeranian 2.453900e-01 True toy_poodle 1.365450e-01 True 5244 20181
1267 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Sweet Pea. She hides in shoe boxes and... NaN NaN NaN https://twitter.com/dog_rates/status/825147591... 13 10 Sweet puppo https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 Pekinese 0.354823 True Pomeranian 2.453900e-01 True toy_poodle 1.365450e-01 True 5244 20181
1269 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Pablo. He's one gorgeous puppo. A... NaN NaN NaN https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo floofer https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 2 Eskimo_dog 0.524454 True Siberian_husky 4.676780e-01 True malamute 4.975840e-03 True 1483 7020
1270 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Pablo. He's one gorgeous puppo. A... NaN NaN NaN https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo pupper https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 2 Eskimo_dog 0.524454 True Siberian_husky 4.676780e-01 True malamute 4.975840e-03 True 1483 7020
1271 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Pablo. He's one gorgeous puppo. A... NaN NaN NaN https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo puppo https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 2 Eskimo_dog 0.524454 True Siberian_husky 4.676780e-01 True malamute 4.975840e-03 True 1483 7020
1273 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bailey. She loves going... 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730... 11 10 Bailey floofer https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False 6288 0
1274 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bailey. She loves going... 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730... 11 10 Bailey pupper https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False 6288 0
1275 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bailey. She loves going... 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730... 11 10 Bailey puppo https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False 6288 0
1277 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter. His lack of opposable thumbs ... NaN NaN NaN https://twitter.com/dog_rates/status/824775126... 12 10 Scooter floofer https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 Border_terrier 0.610499 True malinois 9.029120e-02 True Airedale 6.862470e-02 True 4069 16508
1278 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter. His lack of opposable thumbs ... NaN NaN NaN https://twitter.com/dog_rates/status/824775126... 12 10 Scooter pupper https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 Border_terrier 0.610499 True malinois 9.029120e-02 True Airedale 6.862470e-02 True 4069 16508
1279 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter. His lack of opposable thumbs ... NaN NaN NaN https://twitter.com/dog_rates/status/824775126... 12 10 Scooter puppo https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 Border_terrier 0.610499 True malinois 9.029120e-02 True Airedale 6.862470e-02 True 4069 16508
1281 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. Named after the volleyball. He... NaN NaN NaN https://twitter.com/dog_rates/status/824663926... 13 10 Wilson floofer https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 English_setter 0.526488 True golden_retriever 4.028150e-01 True Irish_setter 3.441780e-02 True 1993 11113
1282 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. Named after the volleyball. He... NaN NaN NaN https://twitter.com/dog_rates/status/824663926... 13 10 Wilson pupper https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 English_setter 0.526488 True golden_retriever 4.028150e-01 True Irish_setter 3.441780e-02 True 1993 11113
1283 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. Named after the volleyball. He... NaN NaN NaN https://twitter.com/dog_rates/status/824663926... 13 10 Wilson puppo https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 English_setter 0.526488 True golden_retriever 4.028150e-01 True Irish_setter 3.441780e-02 True 1993 11113
1285 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" r... Retweet the h*ck out of this 13/10 pupper #Bel... NaN NaN NaN https://twitter.com/dog_rates/status/824325613... 13 10 None floofer https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 Pembroke 0.990793 True Cardigan 8.919390e-03 True basenji 2.622640e-04 True 11848 12999
1286 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" r... Retweet the h*ck out of this 13/10 pupper #Bel... NaN NaN NaN https://twitter.com/dog_rates/status/824325613... 13 10 None pupper https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 Pembroke 0.990793 True Cardigan 8.919390e-03 True basenji 2.622640e-04 True 11848 12999
1287 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" r... Retweet the h*ck out of this 13/10 pupper #Bel... NaN NaN NaN https://twitter.com/dog_rates/status/824325613... 13 10 None puppo https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 Pembroke 0.990793 True Cardigan 8.919390e-03 True basenji 2.622640e-04 True 11848 12999
1289 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She got in trouble. One h*ck of ... NaN NaN NaN https://twitter.com/dog_rates/status/824297048... 11 10 Nala floofer https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 2 teddy 0.588230 False jigsaw_puzzle 2.890960e-02 False doormat 2.225070e-02 False 4463 16625
1290 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She got in trouble. One h*ck of ... NaN NaN NaN https://twitter.com/dog_rates/status/824297048... 11 10 Nala pupper https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 2 teddy 0.588230 False jigsaw_puzzle 2.890960e-02 False doormat 2.225070e-02 False 4463 16625
1291 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She got in trouble. One h*ck of ... NaN NaN NaN https://twitter.com/dog_rates/status/824297048... 11 10 Nala puppo https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 2 teddy 0.588230 False jigsaw_puzzle 2.890960e-02 False doormat 2.225070e-02 False 4463 16625
1293 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cash. He's officially given pup on tod... NaN NaN NaN https://twitter.com/dog_rates/status/823939628... 12 10 Cash floofer https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 schipperke 0.234076 True curly-coated_retriever 1.930930e-01 True Labrador_retriever 9.519660e-02 True 3123 11755
1294 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cash. He's officially given pup on tod... NaN NaN NaN https://twitter.com/dog_rates/status/823939628... 12 10 Cash pupper https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 schipperke 0.234076 True curly-coated_retriever 1.930930e-01 True Labrador_retriever 9.519660e-02 True 3123 11755
1295 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cash. He's officially given pup on tod... NaN NaN NaN https://twitter.com/dog_rates/status/823939628... 12 10 Cash puppo https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 schipperke 0.234076 True curly-coated_retriever 1.930930e-01 True Labrador_retriever 9.519660e-02 True 3123 11755
1297 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. The goggles make him a superh... NaN NaN NaN https://twitter.com/dog_rates/status/823699002... 12 10 Winston floofer https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 cairn 0.203999 True snorkel 1.718930e-01 False Norfolk_terrier 1.075430e-01 True 2772 13826
1298 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. The goggles make him a superh... NaN NaN NaN https://twitter.com/dog_rates/status/823699002... 12 10 Winston pupper https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 cairn 0.203999 True snorkel 1.718930e-01 False Norfolk_terrier 1.075430e-01 True 2772 13826
1299 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. The goggles make him a superh... NaN NaN NaN https://twitter.com/dog_rates/status/823699002... 12 10 Winston puppo https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 cairn 0.203999 True snorkel 1.718930e-01 False Norfolk_terrier 1.075430e-01 True 2772 13826
1301 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Crawford. He's quite h*ckin good at th... NaN NaN NaN https://twitter.com/dog_rates/status/823581115... 11 10 Crawford floofer https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 dingo 0.280949 False German_shepherd 1.940440e-01 True Pembroke 1.200510e-01 True 3031 14376
1302 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Crawford. He's quite h*ckin good at th... NaN NaN NaN https://twitter.com/dog_rates/status/823581115... 11 10 Crawford pupper https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 dingo 0.280949 False German_shepherd 1.940440e-01 True Pembroke 1.200510e-01 True 3031 14376
1303 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Crawford. He's quite h*ckin good at th... NaN NaN NaN https://twitter.com/dog_rates/status/823581115... 11 10 Crawford puppo https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 dingo 0.280949 False German_shepherd 1.940440e-01 True Pembroke 1.200510e-01 True 3031 14376
1305 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He's got the fastest paws in th... NaN NaN NaN https://twitter.com/dog_rates/status/823322678... 11 10 Wyatt floofer https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 2 cowboy_boot 0.990253 False Chihuahua 1.836350e-03 True papillon 1.273900e-03 True 4637 17437
1306 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He's got the fastest paws in th... NaN NaN NaN https://twitter.com/dog_rates/status/823322678... 11 10 Wyatt pupper https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 2 cowboy_boot 0.990253 False Chihuahua 1.836350e-03 True papillon 1.273900e-03 True 4637 17437
1307 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He's got the fastest paws in th... NaN NaN NaN https://twitter.com/dog_rates/status/823322678... 11 10 Wyatt puppo https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 2 cowboy_boot 0.990253 False Chihuahua 1.836350e-03 True papillon 1.273900e-03 True 4637 17437
1309 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Please don't... 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816... 11 10 None floofer https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False 11421 0
1310 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Please don't... 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816... 11 10 None pupper https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False 11421 0
1311 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Please don't... 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816... 11 10 None puppo https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False 11421 0
1313 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's soaked as h*ck. Seems to h... NaN NaN NaN https://twitter.com/dog_rates/status/822975315... 12 10 Albus floofer https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 bathtub 0.331098 False tub 2.488600e-01 False Pembroke 2.331620e-01 True 3958 19139
1314 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's soaked as h*ck. Seems to h... NaN NaN NaN https://twitter.com/dog_rates/status/822975315... 12 10 Albus pupper https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 bathtub 0.331098 False tub 2.488600e-01 False Pembroke 2.331620e-01 True 3958 19139
1315 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's soaked as h*ck. Seems to h... NaN NaN NaN https://twitter.com/dog_rates/status/822975315... 12 10 Albus puppo https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 bathtub 0.331098 False tub 2.488600e-01 False Pembroke 2.331620e-01 True 3958 19139
1317 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super supportive puppo participating ... NaN NaN NaN https://twitter.com/dog_rates/status/822872901... 13 10 None floofer https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 Lakeland_terrier 0.196015 True Labrador_retriever 1.603290e-01 True Irish_terrier 6.912620e-02 True 48265 132810
1318 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super supportive puppo participating ... NaN NaN NaN https://twitter.com/dog_rates/status/822872901... 13 10 None pupper https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 Lakeland_terrier 0.196015 True Labrador_retriever 1.603290e-01 True Irish_terrier 6.912620e-02 True 48265 132810
1319 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super supportive puppo participating ... NaN NaN NaN https://twitter.com/dog_rates/status/822872901... 13 10 None puppo https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 Lakeland_terrier 0.196015 True Labrador_retriever 1.603290e-01 True Irish_terrier 6.912620e-02 True 48265 132810
1321 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He was told he was going to th... NaN NaN NaN https://twitter.com/dog_rates/status/822859134... 12 10 Hobbes floofer https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 malinois 0.332897 True Chihuahua 1.041160e-01 True Staffordshire_bullterrier 4.774500e-02 True 2622 14576
1322 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He was told he was going to th... NaN NaN NaN https://twitter.com/dog_rates/status/822859134... 12 10 Hobbes pupper https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 malinois 0.332897 True Chihuahua 1.041160e-01 True Staffordshire_bullterrier 4.774500e-02 True 2622 14576
1323 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He was told he was going to th... NaN NaN NaN https://twitter.com/dog_rates/status/822859134... 12 10 Hobbes puppo https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 malinois 0.332897 True Chihuahua 1.041160e-01 True Staffordshire_bullterrier 4.774500e-02 True 2622 14576
1325 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paisley. She really wan... 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057... 13 10 Paisley floofer https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True 7390 0
1326 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paisley. She really wan... 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057... 13 10 Paisley pupper https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True 7390 0
1327 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paisley. She really wan... 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057... 13 10 Paisley puppo https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True 7390 0
1329 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non-canines like this V... NaN NaN NaN https://twitter.com/dog_rates/status/822610361... 12 10 None floofer https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 cocker_spaniel 0.664487 True Norfolk_terrier 7.508900e-02 True Norwich_terrier 5.964390e-02 True 3423 16327
1330 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non-canines like this V... NaN NaN NaN https://twitter.com/dog_rates/status/822610361... 12 10 None pupper https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 cocker_spaniel 0.664487 True Norfolk_terrier 7.508900e-02 True Norwich_terrier 5.964390e-02 True 3423 16327
1331 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non-canines like this V... NaN NaN NaN https://twitter.com/dog_rates/status/822610361... 12 10 None puppo https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 cocker_spaniel 0.664487 True Norfolk_terrier 7.508900e-02 True Norwich_terrier 5.964390e-02 True 3423 16327
1333 822489057087389700 NaN NaN 2017-01-20 17:00:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She really wanted to be presi... NaN NaN NaN https://twitter.com/dog_rates/status/822489057... 13 10 Paisley floofer https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True 7390 20083
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
6959 672160042234327040 NaN NaN 2015-12-02 21:06:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubba. He's a Titted Peebles Aorta. Ev... NaN NaN NaN https://twitter.com/dog_rates/status/672160042... 8 10 Bubba puppo https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg 1 pug 0.561027 True French_bulldog 2.221140e-01 True Labrador_retriever 6.545560e-02 True 395 918
6961 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" r... This pup has a heart on its ass and that is do... NaN NaN NaN https://twitter.com/dog_rates/status/672139350... 12 10 None floofer https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 Rottweiler 0.290992 True American_black_bear 2.381200e-01 False chimpanzee 1.155410e-01 False 792 1876
6962 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" r... This pup has a heart on its ass and that is do... NaN NaN NaN https://twitter.com/dog_rates/status/672139350... 12 10 None pupper https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 Rottweiler 0.290992 True American_black_bear 2.381200e-01 False chimpanzee 1.155410e-01 False 792 1876
6963 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" r... This pup has a heart on its ass and that is do... NaN NaN NaN https://twitter.com/dog_rates/status/672139350... 12 10 None puppo https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 Rottweiler 0.290992 True American_black_bear 2.381200e-01 False chimpanzee 1.155410e-01 False 792 1876
6965 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is just impressive I have nothing else to... NaN NaN NaN https://twitter.com/dog_rates/status/672125275... 11 10 just floofer https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 tennis_ball 0.999834 False golden_retriever 8.675670e-05 True racket 5.332190e-05 False 1253 2578
6966 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is just impressive I have nothing else to... NaN NaN NaN https://twitter.com/dog_rates/status/672125275... 11 10 just pupper https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 tennis_ball 0.999834 False golden_retriever 8.675670e-05 True racket 5.332190e-05 False 1253 2578
6967 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is just impressive I have nothing else to... NaN NaN NaN https://twitter.com/dog_rates/status/672125275... 11 10 just puppo https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 tennis_ball 0.999834 False golden_retriever 8.675670e-05 True racket 5.332190e-05 False 1253 2578
6969 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuco. That's the toast that killed his... NaN NaN NaN https://twitter.com/dog_rates/status/672095186... 9 10 Tuco floofer https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 pug 0.794087 True French_bulldog 1.407960e-01 True bull_mastiff 4.468110e-02 True 395 1063
6970 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuco. That's the toast that killed his... NaN NaN NaN https://twitter.com/dog_rates/status/672095186... 9 10 Tuco pupper https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 pug 0.794087 True French_bulldog 1.407960e-01 True bull_mastiff 4.468110e-02 True 395 1063
6971 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuco. That's the toast that killed his... NaN NaN NaN https://twitter.com/dog_rates/status/672095186... 9 10 Tuco puppo https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 pug 0.794087 True French_bulldog 1.407960e-01 True bull_mastiff 4.468110e-02 True 395 1063
6973 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Patch. He wants to be a Christmas tree... NaN NaN NaN https://twitter.com/dog_rates/status/672082170... 11 10 Patch floofer https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 hamster 0.132440 False toy_poodle 1.239620e-01 True bubble 5.621240e-02 False 402 1003
6974 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Patch. He wants to be a Christmas tree... NaN NaN NaN https://twitter.com/dog_rates/status/672082170... 11 10 Patch pupper https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 hamster 0.132440 False toy_poodle 1.239620e-01 True bubble 5.621240e-02 False 402 1003
6975 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Patch. He wants to be a Christmas tree... NaN NaN NaN https://twitter.com/dog_rates/status/672082170... 11 10 Patch puppo https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 hamster 0.132440 False toy_poodle 1.239620e-01 True bubble 5.621240e-02 False 402 1003
6977 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's upset because he's no... NaN NaN NaN https://twitter.com/dog_rates/status/672068090... 7 10 Gizmo floofer https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 pug 0.863385 True shopping_cart 1.257460e-01 False Border_terrier 2.972460e-03 True 564 1389
6978 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's upset because he's no... NaN NaN NaN https://twitter.com/dog_rates/status/672068090... 7 10 Gizmo pupper https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 pug 0.863385 True shopping_cart 1.257460e-01 False Border_terrier 2.972460e-03 True 564 1389
6979 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's upset because he's no... NaN NaN NaN https://twitter.com/dog_rates/status/672068090... 7 10 Gizmo puppo https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 pug 0.863385 True shopping_cart 1.257460e-01 False Border_terrier 2.972460e-03 True 564 1389
6981 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She fell asleep on a piece of pi... NaN NaN NaN https://twitter.com/dog_rates/status/671896809... 10 10 Lola floofer https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True 4519 9016
6982 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She fell asleep on a piece of pi... NaN NaN NaN https://twitter.com/dog_rates/status/671896809... 10 10 Lola pupper https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True 4519 9016
6983 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She fell asleep on a piece of pi... NaN NaN NaN https://twitter.com/dog_rates/status/671896809... 10 10 Lola puppo https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True 4519 9016
6985 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Mojo. Apparently he's too cute for a s... NaN NaN NaN https://twitter.com/dog_rates/status/671891728... 11 10 Mojo floofer https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 Labrador_retriever 0.567933 True golden_retriever 3.494010e-01 True seat_belt 6.939620e-02 False 618 1415
6986 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Mojo. Apparently he's too cute for a s... NaN NaN NaN https://twitter.com/dog_rates/status/671891728... 11 10 Mojo pupper https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 Labrador_retriever 0.567933 True golden_retriever 3.494010e-01 True seat_belt 6.939620e-02 False 618 1415
6987 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Mojo. Apparently he's too cute for a s... NaN NaN NaN https://twitter.com/dog_rates/status/671891728... 11 10 Mojo puppo https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 Labrador_retriever 0.567933 True golden_retriever 3.494010e-01 True seat_belt 6.939620e-02 False 618 1415
6989 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Batdog. He's sleeping now but when he ... NaN NaN NaN https://twitter.com/dog_rates/status/671882082... 11 10 Batdog floofer https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 ski_mask 0.968325 False mask 2.186270e-02 False abaya 5.479450e-03 False 1488 3693
6990 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Batdog. He's sleeping now but when he ... NaN NaN NaN https://twitter.com/dog_rates/status/671882082... 11 10 Batdog pupper https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 ski_mask 0.968325 False mask 2.186270e-02 False abaya 5.479450e-03 False 1488 3693
6991 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Batdog. He's sleeping now but when he ... NaN NaN NaN https://twitter.com/dog_rates/status/671882082... 11 10 Batdog puppo https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 ski_mask 0.968325 False mask 2.186270e-02 False abaya 5.479450e-03 False 1488 3693
6993 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Brad. He's a chubby lil pup. Doesn't r... NaN NaN NaN https://twitter.com/dog_rates/status/671879137... 5 10 Brad floofer https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 bee_eater 0.302648 False toucan 2.196460e-01 False chickadee 1.566870e-01 False 748 1507
6994 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Brad. He's a chubby lil pup. Doesn't r... NaN NaN NaN https://twitter.com/dog_rates/status/671879137... 5 10 Brad pupper https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 bee_eater 0.302648 False toucan 2.196460e-01 False chickadee 1.566870e-01 False 748 1507
6995 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Brad. He's a chubby lil pup. Doesn't r... NaN NaN NaN https://twitter.com/dog_rates/status/671879137... 5 10 Brad puppo https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 bee_eater 0.302648 False toucan 2.196460e-01 False chickadee 1.566870e-01 False 748 1507
6997 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She was specifically told not get... NaN NaN NaN https://twitter.com/dog_rates/status/671874878... 10 10 Mia floofer https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 china_cabinet 0.996031 False entertainment_center 1.985890e-03 False bookcase 1.651810e-03 False 601 1330
6998 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She was specifically told not get... NaN NaN NaN https://twitter.com/dog_rates/status/671874878... 10 10 Mia pupper https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 china_cabinet 0.996031 False entertainment_center 1.985890e-03 False bookcase 1.651810e-03 False 601 1330
6999 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She was specifically told not get... NaN NaN NaN https://twitter.com/dog_rates/status/671874878... 10 10 Mia puppo https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 china_cabinet 0.996031 False entertainment_center 1.985890e-03 False bookcase 1.651810e-03 False 601 1330
7001 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dylan. He can use a fork but clearly can'... NaN NaN NaN https://twitter.com/dog_rates/status/671866342... 10 10 Dylan floofer https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 Labrador_retriever 0.875614 True Chihuahua 3.218220e-02 True golden_retriever 1.723250e-02 True 548 1191
7002 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dylan. He can use a fork but clearly can'... NaN NaN NaN https://twitter.com/dog_rates/status/671866342... 10 10 Dylan pupper https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 Labrador_retriever 0.875614 True Chihuahua 3.218220e-02 True golden_retriever 1.723250e-02 True 548 1191
7003 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dylan. He can use a fork but clearly can'... NaN NaN NaN https://twitter.com/dog_rates/status/671866342... 10 10 Dylan puppo https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 Labrador_retriever 0.875614 True Chihuahua 3.218220e-02 True golden_retriever 1.723250e-02 True 548 1191
7005 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None floofer https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 chimpanzee 0.636031 False gorilla 9.875150e-02 False fountain 3.175550e-02 False 502 977
7006 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None pupper https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 chimpanzee 0.636031 False gorilla 9.875150e-02 False fountain 3.175550e-02 False 502 977
7007 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None puppo https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 chimpanzee 0.636031 False gorilla 9.875150e-02 False fountain 3.175550e-02 False 502 977
7009 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" r... This is space pup. He's very confused. Tries t... NaN NaN NaN https://twitter.com/dog_rates/status/671789708... 13 10 space floofer https://pbs.twimg.com/tweet_video_thumb/CVKtH-... 1 dalmatian 0.114259 True teddy 6.227520e-02 False steam_locomotive 4.970020e-02 False 3811 7527
7010 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" r... This is space pup. He's very confused. Tries t... NaN NaN NaN https://twitter.com/dog_rates/status/671789708... 13 10 space pupper https://pbs.twimg.com/tweet_video_thumb/CVKtH-... 1 dalmatian 0.114259 True teddy 6.227520e-02 False steam_locomotive 4.970020e-02 False 3811 7527
7011 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" r... This is space pup. He's very confused. Tries t... NaN NaN NaN https://twitter.com/dog_rates/status/671789708... 13 10 space puppo https://pbs.twimg.com/tweet_video_thumb/CVKtH-... 1 dalmatian 0.114259 True teddy 6.227520e-02 False steam_locomotive 4.970020e-02 False 3811 7527
7013 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" r... When you try to recreate the scene from Lady &... NaN NaN NaN https://twitter.com/dog_rates/status/671768281... 10 10 None floofer https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 1.127960e-01 True Italian_greyhound 6.289270e-02 True 572 1269
7014 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" r... When you try to recreate the scene from Lady &... NaN NaN NaN https://twitter.com/dog_rates/status/671768281... 10 10 None pupper https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 1.127960e-01 True Italian_greyhound 6.289270e-02 True 572 1269
7015 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" r... When you try to recreate the scene from Lady &... NaN NaN NaN https://twitter.com/dog_rates/status/671768281... 10 10 None puppo https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 1.127960e-01 True Italian_greyhound 6.289270e-02 True 572 1269
7017 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mark. He's a good dog. Always rea... NaN NaN NaN https://twitter.com/dog_rates/status/671763349... 9 10 Mark floofer https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 prayer_rug 0.445334 False doormat 2.753110e-01 False bib 4.881320e-02 False 999 1788
7018 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mark. He's a good dog. Always rea... NaN NaN NaN https://twitter.com/dog_rates/status/671763349... 9 10 Mark pupper https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 prayer_rug 0.445334 False doormat 2.753110e-01 False bib 4.881320e-02 False 999 1788
7019 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mark. He's a good dog. Always rea... NaN NaN NaN https://twitter.com/dog_rates/status/671763349... 9 10 Mark puppo https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 prayer_rug 0.445334 False doormat 2.753110e-01 False bib 4.881320e-02 False 999 1788
7021 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" r... Very fit horned dog here. Looks powerful. Not ... NaN NaN NaN https://twitter.com/dog_rates/status/671744970... 6 10 None floofer https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 ice_bear 0.251193 False ram 2.138390e-01 False Arctic_fox 8.155140e-02 False 841 1430
7022 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" r... Very fit horned dog here. Looks powerful. Not ... NaN NaN NaN https://twitter.com/dog_rates/status/671744970... 6 10 None pupper https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 ice_bear 0.251193 False ram 2.138390e-01 False Arctic_fox 8.155140e-02 False 841 1430
7023 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" r... Very fit horned dog here. Looks powerful. Not ... NaN NaN NaN https://twitter.com/dog_rates/status/671744970... 6 10 None puppo https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 ice_bear 0.251193 False ram 2.138390e-01 False Arctic_fox 8.155140e-02 False 841 1430
7025 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a Tuscaloosa Alcatraz named Jacob (Yac... NaN NaN NaN https://twitter.com/dog_rates/status/671743150... 11 10 a floofer https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 toy_poodle 0.419427 True miniature_poodle 2.370670e-01 True swing 1.041930e-01 False 248 779
7026 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a Tuscaloosa Alcatraz named Jacob (Yac... NaN NaN NaN https://twitter.com/dog_rates/status/671743150... 11 10 a pupper https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 toy_poodle 0.419427 True miniature_poodle 2.370670e-01 True swing 1.041930e-01 False 248 779
7027 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a Tuscaloosa Alcatraz named Jacob (Yac... NaN NaN NaN https://twitter.com/dog_rates/status/671743150... 11 10 a puppo https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 toy_poodle 0.419427 True miniature_poodle 2.370670e-01 True swing 1.041930e-01 False 248 779
7029 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's ready for Christmas. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/671735591... 11 10 Oscar floofer https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 6.307820e-02 True poncho 4.822590e-02 False 819 1534
7030 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's ready for Christmas. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/671735591... 11 10 Oscar pupper https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 6.307820e-02 True poncho 4.822590e-02 False 819 1534
7031 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's ready for Christmas. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/671735591... 11 10 Oscar puppo https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 6.307820e-02 True poncho 4.822590e-02 False 819 1534
7033 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I'm just going to leave this one here as well.... NaN NaN NaN https://twitter.com/dog_rates/status/671729906... 13 10 None floofer https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 kuvasz 0.431469 True Samoyed 1.171220e-01 True white_wolf 9.006660e-02 False 4795 9119
7034 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I'm just going to leave this one here as well.... NaN NaN NaN https://twitter.com/dog_rates/status/671729906... 13 10 None pupper https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 kuvasz 0.431469 True Samoyed 1.171220e-01 True white_wolf 9.006660e-02 False 4795 9119
7035 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I'm just going to leave this one here as well.... NaN NaN NaN https://twitter.com/dog_rates/status/671729906... 13 10 None puppo https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 kuvasz 0.431469 True Samoyed 1.171220e-01 True white_wolf 9.006660e-02 False 4795 9119
7037 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" r... This is the best thing I've ever seen so sprea... NaN NaN NaN https://twitter.com/dog_rates/status/671561002... 13 10 the floofer https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 Gordon_setter 0.469373 True black-and-tan_coonhound 2.708930e-01 True Rottweiler 1.532330e-01 True 7931 13679
7038 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" r... This is the best thing I've ever seen so sprea... NaN NaN NaN https://twitter.com/dog_rates/status/671561002... 13 10 the pupper https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 Gordon_setter 0.469373 True black-and-tan_coonhound 2.708930e-01 True Rottweiler 1.532330e-01 True 7931 13679
7039 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" r... This is the best thing I've ever seen so sprea... NaN NaN NaN https://twitter.com/dog_rates/status/671561002... 13 10 the puppo https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 Gordon_setter 0.469373 True black-and-tan_coonhound 2.708930e-01 True Rottweiler 1.532330e-01 True 7931 13679
7041 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She chews shoes then feels ext... NaN NaN NaN https://twitter.com/dog_rates/status/671547767... 10 10 Marley floofer https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 9.001910e-02 False cowboy_boot 6.653600e-02 False 658 1444
7042 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She chews shoes then feels ext... NaN NaN NaN https://twitter.com/dog_rates/status/671547767... 10 10 Marley pupper https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 9.001910e-02 False cowboy_boot 6.653600e-02 False 658 1444
7043 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She chews shoes then feels ext... NaN NaN NaN https://twitter.com/dog_rates/status/671547767... 10 10 Marley puppo https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 9.001910e-02 False cowboy_boot 6.653600e-02 False 658 1444
7045 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" r... Interesting dog here. Very large. Purple. Mani... NaN NaN NaN https://twitter.com/dog_rates/status/671544874... 6 10 None floofer https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 feather_boa 0.240858 False wig 8.594620e-02 False wool 4.067350e-02 False 1145 2126
7046 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" r... Interesting dog here. Very large. Purple. Mani... NaN NaN NaN https://twitter.com/dog_rates/status/671544874... 6 10 None pupper https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 feather_boa 0.240858 False wig 8.594620e-02 False wool 4.067350e-02 False 1145 2126
7047 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" r... Interesting dog here. Very large. Purple. Mani... NaN NaN NaN https://twitter.com/dog_rates/status/671544874... 6 10 None puppo https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 feather_boa 0.240858 False wig 8.594620e-02 False wool 4.067350e-02 False 1145 2126
7049 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" r... This is JD (stands for "just dog"). He's like ... NaN NaN NaN https://twitter.com/dog_rates/status/671542985... 10 10 JD floofer https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 Shetland_sheepdog 0.980339 True collie 6.693000e-03 True papillon 6.157010e-03 True 616 1166
7050 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" r... This is JD (stands for "just dog"). He's like ... NaN NaN NaN https://twitter.com/dog_rates/status/671542985... 10 10 JD pupper https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 Shetland_sheepdog 0.980339 True collie 6.693000e-03 True papillon 6.157010e-03 True 616 1166
7051 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" r... This is JD (stands for "just dog"). He's like ... NaN NaN NaN https://twitter.com/dog_rates/status/671542985... 10 10 JD puppo https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 Shetland_sheepdog 0.980339 True collie 6.693000e-03 True papillon 6.157010e-03 True 616 1166
7053 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He's very calm. Hasn't eaten i... NaN NaN NaN https://twitter.com/dog_rates/status/671538301... 8 10 Baxter floofer https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 park_bench 0.194211 False water_bottle 7.186960e-02 False beacon 5.343310e-02 False 436 993
7054 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He's very calm. Hasn't eaten i... NaN NaN NaN https://twitter.com/dog_rates/status/671538301... 8 10 Baxter pupper https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 park_bench 0.194211 False water_bottle 7.186960e-02 False beacon 5.343310e-02 False 436 993
7055 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He's very calm. Hasn't eaten i... NaN NaN NaN https://twitter.com/dog_rates/status/671538301... 8 10 Baxter puppo https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 park_bench 0.194211 False water_bottle 7.186960e-02 False beacon 5.343310e-02 False 436 993
7057 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He's pondering what life wou... NaN NaN NaN https://twitter.com/dog_rates/status/671536543... 9 10 Reginald floofer https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 pug 0.537652 True bull_mastiff 2.206170e-01 True French_bulldog 6.829650e-02 True 441 1253
7058 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He's pondering what life wou... NaN NaN NaN https://twitter.com/dog_rates/status/671536543... 9 10 Reginald pupper https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 pug 0.537652 True bull_mastiff 2.206170e-01 True French_bulldog 6.829650e-02 True 441 1253
7059 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He's pondering what life wou... NaN NaN NaN https://twitter.com/dog_rates/status/671536543... 9 10 Reginald puppo https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 pug 0.537652 True bull_mastiff 2.206170e-01 True French_bulldog 6.829650e-02 True 441 1253
7061 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog here. Spiffy mohawk. Sharp mout... NaN NaN NaN https://twitter.com/dog_rates/status/671533943... 6 10 None floofer https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 hen 0.556524 False cock 4.420330e-01 False black_swan 1.180750e-03 False 631 1092
7062 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog here. Spiffy mohawk. Sharp mout... NaN NaN NaN https://twitter.com/dog_rates/status/671533943... 6 10 None pupper https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 hen 0.556524 False cock 4.420330e-01 False black_swan 1.180750e-03 False 631 1092
7063 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog here. Spiffy mohawk. Sharp mout... NaN NaN NaN https://twitter.com/dog_rates/status/671533943... 6 10 None puppo https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 hen 0.556524 False cock 4.420330e-01 False black_swan 1.180750e-03 False 631 1092
7065 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's in the middle of a serious conv... NaN NaN NaN https://twitter.com/dog_rates/status/671528761... 10 10 Jax floofer https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 Doberman 0.782626 True black-and-tan_coonhound 1.096780e-01 True Gordon_setter 5.211020e-02 True 280 896
7066 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's in the middle of a serious conv... NaN NaN NaN https://twitter.com/dog_rates/status/671528761... 10 10 Jax pupper https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 Doberman 0.782626 True black-and-tan_coonhound 1.096780e-01 True Gordon_setter 5.211020e-02 True 280 896
7067 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's in the middle of a serious conv... NaN NaN NaN https://twitter.com/dog_rates/status/671528761... 10 10 Jax puppo https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 Doberman 0.782626 True black-and-tan_coonhound 1.096780e-01 True Gordon_setter 5.211020e-02 True 280 896
7069 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Alejandro. He's an extremely seductive pu... NaN NaN NaN https://twitter.com/dog_rates/status/671520732... 10 10 Alejandro floofer https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 Pomeranian 0.551031 True Pekinese 1.352620e-01 True gibbon 6.155740e-02 False 582 1499
7070 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Alejandro. He's an extremely seductive pu... NaN NaN NaN https://twitter.com/dog_rates/status/671520732... 10 10 Alejandro pupper https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 Pomeranian 0.551031 True Pekinese 1.352620e-01 True gibbon 6.155740e-02 False 582 1499
7071 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Alejandro. He's an extremely seductive pu... NaN NaN NaN https://twitter.com/dog_rates/status/671520732... 10 10 Alejandro puppo https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 Pomeranian 0.551031 True Pekinese 1.352620e-01 True gibbon 6.155740e-02 False 582 1499
7073 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Scruffers. He's being violated on mult... NaN NaN NaN https://twitter.com/dog_rates/status/671518598... 9 10 Scruffers floofer https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 Lakeland_terrier 0.428275 True wire-haired_fox_terrier 1.114720e-01 True toy_poodle 1.050160e-01 True 319 1010
7074 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Scruffers. He's being violated on mult... NaN NaN NaN https://twitter.com/dog_rates/status/671518598... 9 10 Scruffers pupper https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 Lakeland_terrier 0.428275 True wire-haired_fox_terrier 1.114720e-01 True toy_poodle 1.050160e-01 True 319 1010
7075 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Scruffers. He's being violated on mult... NaN NaN NaN https://twitter.com/dog_rates/status/671518598... 9 10 Scruffers puppo https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 Lakeland_terrier 0.428275 True wire-haired_fox_terrier 1.114720e-01 True toy_poodle 1.050160e-01 True 319 1010
7077 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Hammond. He's just a wee lil pup.... NaN NaN NaN https://twitter.com/dog_rates/status/671511350... 8 10 Hammond floofer https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 hermit_crab 0.625409 False tick 1.273330e-01 False snail 9.791590e-02 False 791 1734
7078 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Hammond. He's just a wee lil pup.... NaN NaN NaN https://twitter.com/dog_rates/status/671511350... 8 10 Hammond pupper https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 hermit_crab 0.625409 False tick 1.273330e-01 False snail 9.791590e-02 False 791 1734
7079 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Hammond. He's just a wee lil pup.... NaN NaN NaN https://twitter.com/dog_rates/status/671511350... 8 10 Hammond puppo https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 hermit_crab 0.625409 False tick 1.273330e-01 False snail 9.791590e-02 False 791 1734
7081 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He was just informed that dog... NaN NaN NaN https://twitter.com/dog_rates/status/671504605... 11 10 Charlie floofer https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 toy_poodle 0.259115 True bath_towel 1.776690e-01 False Maltese_dog 7.171250e-02 True 3866 7495
7082 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He was just informed that dog... NaN NaN NaN https://twitter.com/dog_rates/status/671504605... 11 10 Charlie pupper https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 toy_poodle 0.259115 True bath_towel 1.776690e-01 False Maltese_dog 7.171250e-02 True 3866 7495
7083 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He was just informed that dog... NaN NaN NaN https://twitter.com/dog_rates/status/671504605... 11 10 Charlie puppo https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 toy_poodle 0.259115 True bath_towel 1.776690e-01 False Maltese_dog 7.171250e-02 True 3866 7495
7085 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Pip. He is a ship captain. Many years ... NaN NaN NaN https://twitter.com/dog_rates/status/671497587... 11 10 Pip floofer https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 swing 0.089165 False paddle 8.074690e-02 False bathing_cap 6.569400e-02 False 481 980
7086 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Pip. He is a ship captain. Many years ... NaN NaN NaN https://twitter.com/dog_rates/status/671497587... 11 10 Pip pupper https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 swing 0.089165 False paddle 8.074690e-02 False bathing_cap 6.569400e-02 False 481 980
7087 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Pip. He is a ship captain. Many years ... NaN NaN NaN https://twitter.com/dog_rates/status/671497587... 11 10 Pip puppo https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 swing 0.089165 False paddle 8.074690e-02 False bathing_cap 6.569400e-02 False 481 980
7089 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Julius. He's a cool dog. Carries seash... NaN NaN NaN https://twitter.com/dog_rates/status/671488513... 8 10 Julius floofer https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 hermit_crab 0.528761 False snail 1.856440e-01 False shower_curtain 6.636050e-02 False 516 1073
7090 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Julius. He's a cool dog. Carries seash... NaN NaN NaN https://twitter.com/dog_rates/status/671488513... 8 10 Julius pupper https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 hermit_crab 0.528761 False snail 1.856440e-01 False shower_curtain 6.636050e-02 False 516 1073
7091 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Julius. He's a cool dog. Carries seash... NaN NaN NaN https://twitter.com/dog_rates/status/671488513... 8 10 Julius puppo https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 hermit_crab 0.528761 False snail 1.856440e-01 False shower_curtain 6.636050e-02 False 516 1073
7093 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He just saw a spider. 10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671486386... 10 10 Malcolm floofer https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 German_shepherd 0.827035 True kelpie 8.764770e-02 True red_wolf 3.121790e-02 False 226 621
7094 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He just saw a spider. 10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671486386... 10 10 Malcolm pupper https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 German_shepherd 0.827035 True kelpie 8.764770e-02 True red_wolf 3.121790e-02 False 226 621
7095 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He just saw a spider. 10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671486386... 10 10 Malcolm puppo https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 German_shepherd 0.827035 True kelpie 8.764770e-02 True red_wolf 3.121790e-02 False 226 621
7097 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She is a white Macadamias Duode... NaN NaN NaN https://twitter.com/dog_rates/status/671485057... 11 10 Penelope floofer https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 Samoyed 0.627901 True Great_Pyrenees 2.764210e-01 True kuvasz 5.787350e-02 True 253 806
7098 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She is a white Macadamias Duode... NaN NaN NaN https://twitter.com/dog_rates/status/671485057... 11 10 Penelope pupper https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 Samoyed 0.627901 True Great_Pyrenees 2.764210e-01 True kuvasz 5.787350e-02 True 253 806
7099 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She is a white Macadamias Duode... NaN NaN NaN https://twitter.com/dog_rates/status/671485057... 11 10 Penelope puppo https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 Samoyed 0.627901 True Great_Pyrenees 2.764210e-01 True kuvasz 5.787350e-02 True 253 806
7101 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" r... Striped dog here. Having fun playing on back. ... NaN NaN NaN https://twitter.com/dog_rates/status/671390180... 7 10 None floofer https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 zebra 0.997673 False tiger 8.372680e-04 False prairie_chicken 5.745670e-04 False 805 1513
7102 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" r... Striped dog here. Having fun playing on back. ... NaN NaN NaN https://twitter.com/dog_rates/status/671390180... 7 10 None pupper https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 zebra 0.997673 False tiger 8.372680e-04 False prairie_chicken 5.745670e-04 False 805 1513
7103 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" r... Striped dog here. Having fun playing on back. ... NaN NaN NaN https://twitter.com/dog_rates/status/671390180... 7 10 None puppo https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 zebra 0.997673 False tiger 8.372680e-04 False prairie_chicken 5.745670e-04 False 805 1513
7105 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Tanner. He accidentally dropped all hi... NaN NaN NaN https://twitter.com/dog_rates/status/671362598... 11 10 Tanner floofer https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 tub 0.393616 False bathtub 3.835220e-01 False swimming_trunks 7.730080e-02 False 325 1193
7106 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Tanner. He accidentally dropped all hi... NaN NaN NaN https://twitter.com/dog_rates/status/671362598... 11 10 Tanner pupper https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 tub 0.393616 False bathtub 3.835220e-01 False swimming_trunks 7.730080e-02 False 325 1193
7107 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Tanner. He accidentally dropped all hi... NaN NaN NaN https://twitter.com/dog_rates/status/671362598... 11 10 Tanner puppo https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 tub 0.393616 False bathtub 3.835220e-01 False swimming_trunks 7.730080e-02 False 325 1193
7109 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" r... Tfw she says hello from the other side. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671357843... 9 10 None floofer https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 Italian_greyhound 0.831757 True toy_terrier 4.330580e-02 True Chihuahua 3.677300e-02 True 157 426
7110 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" r... Tfw she says hello from the other side. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671357843... 9 10 None pupper https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 Italian_greyhound 0.831757 True toy_terrier 4.330580e-02 True Chihuahua 3.677300e-02 True 157 426
7111 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" r... Tfw she says hello from the other side. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671357843... 9 10 None puppo https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 Italian_greyhound 0.831757 True toy_terrier 4.330580e-02 True Chihuahua 3.677300e-02 True 157 426
7113 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. He's a Petrarch Sunni Pinto. Well... NaN NaN NaN https://twitter.com/dog_rates/status/671355857... 10 10 Lou floofer https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 miniature_poodle 0.313811 True toy_poodle 1.655850e-01 True Irish_terrier 5.609410e-02 True 119 508
7114 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. He's a Petrarch Sunni Pinto. Well... NaN NaN NaN https://twitter.com/dog_rates/status/671355857... 10 10 Lou pupper https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 miniature_poodle 0.313811 True toy_poodle 1.655850e-01 True Irish_terrier 5.609410e-02 True 119 508
7115 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. He's a Petrarch Sunni Pinto. Well... NaN NaN NaN https://twitter.com/dog_rates/status/671355857... 10 10 Lou puppo https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 miniature_poodle 0.313811 True toy_poodle 1.655850e-01 True Irish_terrier 5.609410e-02 True 119 508
7117 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She was not fully prepared for t... NaN NaN NaN https://twitter.com/dog_rates/status/671347597... 9 10 Lola floofer https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 picket_fence 0.382918 False rain_barrel 1.088090e-01 False plastic_bag 3.887820e-02 False 476 1031
7118 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She was not fully prepared for t... NaN NaN NaN https://twitter.com/dog_rates/status/671347597... 9 10 Lola pupper https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 picket_fence 0.382918 False rain_barrel 1.088090e-01 False plastic_bag 3.887820e-02 False 476 1031
7119 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She was not fully prepared for t... NaN NaN NaN https://twitter.com/dog_rates/status/671347597... 9 10 Lola puppo https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 picket_fence 0.382918 False rain_barrel 1.088090e-01 False plastic_bag 3.887820e-02 False 476 1031
7121 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Sparky. That's his pancake now. He wil... NaN NaN NaN https://twitter.com/dog_rates/status/671186162... 10 10 Sparky floofer https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 Chihuahua 0.319106 True whippet 1.691340e-01 True toy_terrier 1.258150e-01 True 241 788
7122 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Sparky. That's his pancake now. He wil... NaN NaN NaN https://twitter.com/dog_rates/status/671186162... 10 10 Sparky pupper https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 Chihuahua 0.319106 True whippet 1.691340e-01 True toy_terrier 1.258150e-01 True 241 788
7123 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Sparky. That's his pancake now. He wil... NaN NaN NaN https://twitter.com/dog_rates/status/671186162... 10 10 Sparky puppo https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 Chihuahua 0.319106 True whippet 1.691340e-01 True toy_terrier 1.258150e-01 True 241 788
7125 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" r... This pup holds the secrets of the universe in ... NaN NaN NaN https://twitter.com/dog_rates/status/671182547... 12 10 None floofer https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 Rottweiler 0.331179 True kelpie 2.186010e-01 True Appenzeller 1.825200e-01 True 378 1193
7126 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" r... This pup holds the secrets of the universe in ... NaN NaN NaN https://twitter.com/dog_rates/status/671182547... 12 10 None pupper https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 Rottweiler 0.331179 True kelpie 2.186010e-01 True Appenzeller 1.825200e-01 True 378 1193
7127 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" r... This pup holds the secrets of the universe in ... NaN NaN NaN https://twitter.com/dog_rates/status/671182547... 12 10 None puppo https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 Rottweiler 0.331179 True kelpie 2.186010e-01 True Appenzeller 1.825200e-01 True 378 1193
7129 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. It's his first day of potty trai... NaN NaN NaN https://twitter.com/dog_rates/status/671166507... 10 10 Herm floofer https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 refrigerator 0.829772 False toilet_seat 3.008330e-02 False shower_curtain 1.546070e-02 False 390 931
7130 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. It's his first day of potty trai... NaN NaN NaN https://twitter.com/dog_rates/status/671166507... 10 10 Herm pupper https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 refrigerator 0.829772 False toilet_seat 3.008330e-02 False shower_curtain 1.546070e-02 False 390 931
7131 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. It's his first day of potty trai... NaN NaN NaN https://twitter.com/dog_rates/status/671166507... 10 10 Herm puppo https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 refrigerator 0.829772 False toilet_seat 3.008330e-02 False shower_curtain 1.546070e-02 False 390 931
7133 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" r... Pack of horned dogs here. Very team-oriented b... NaN NaN NaN https://twitter.com/dog_rates/status/671163268... 8 10 None floofer https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 African_hunting_dog 0.733025 False plow 1.193770e-01 False Scottish_deerhound 2.698290e-02 True 1198 1763
7134 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" r... Pack of horned dogs here. Very team-oriented b... NaN NaN NaN https://twitter.com/dog_rates/status/671163268... 8 10 None pupper https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 African_hunting_dog 0.733025 False plow 1.193770e-01 False Scottish_deerhound 2.698290e-02 True 1198 1763
7135 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" r... Pack of horned dogs here. Very team-oriented b... NaN NaN NaN https://twitter.com/dog_rates/status/671163268... 8 10 None puppo https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 African_hunting_dog 0.733025 False plow 1.193770e-01 False Scottish_deerhound 2.698290e-02 True 1198 1763
7137 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Anthony. He just finished up his maste... NaN NaN NaN https://twitter.com/dog_rates/status/671159727... 5 10 Anthony floofer https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 pitcher 0.117446 False sunglasses 6.248650e-02 False mask 5.951670e-02 False 89 401
7138 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Anthony. He just finished up his maste... NaN NaN NaN https://twitter.com/dog_rates/status/671159727... 5 10 Anthony pupper https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 pitcher 0.117446 False sunglasses 6.248650e-02 False mask 5.951670e-02 False 89 401
7139 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Anthony. He just finished up his maste... NaN NaN NaN https://twitter.com/dog_rates/status/671159727... 5 10 Anthony puppo https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 pitcher 0.117446 False sunglasses 6.248650e-02 False mask 5.951670e-02 False 89 401
7141 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Holly. She's trying to teach small human-... NaN NaN NaN https://twitter.com/dog_rates/status/671154572... 11 10 Holly floofer https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 Labrador_retriever 0.495047 True Chesapeake_Bay_retriever 3.501880e-01 True golden_retriever 1.424000e-01 True 241 769
7142 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Holly. She's trying to teach small human-... NaN NaN NaN https://twitter.com/dog_rates/status/671154572... 11 10 Holly pupper https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 Labrador_retriever 0.495047 True Chesapeake_Bay_retriever 3.501880e-01 True golden_retriever 1.424000e-01 True 241 769
7143 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Holly. She's trying to teach small human-... NaN NaN NaN https://twitter.com/dog_rates/status/671154572... 11 10 Holly puppo https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 Labrador_retriever 0.495047 True Chesapeake_Bay_retriever 3.501880e-01 True golden_retriever 1.424000e-01 True 241 769
7145 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" r... *struggling to breathe properly* 12/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/671151324... 12 10 None floofer https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 Rottweiler 0.781201 True black-and-tan_coonhound 6.120650e-02 True kelpie 4.885570e-02 True 166 714
7146 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" r... *struggling to breathe properly* 12/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/671151324... 12 10 None pupper https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 Rottweiler 0.781201 True black-and-tan_coonhound 6.120650e-02 True kelpie 4.885570e-02 True 166 714
7147 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" r... *struggling to breathe properly* 12/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/671151324... 12 10 None puppo https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 Rottweiler 0.781201 True black-and-tan_coonhound 6.120650e-02 True kelpie 4.885570e-02 True 166 714
7149 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" r... This is a Helvetica Listerine named Rufus. Thi... NaN NaN NaN https://twitter.com/dog_rates/status/671147085... 9 10 a floofer https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 Yorkshire_terrier 0.467202 True cairn 4.401220e-01 True silky_terrier 5.869010e-02 True 254 713
7150 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" r... This is a Helvetica Listerine named Rufus. Thi... NaN NaN NaN https://twitter.com/dog_rates/status/671147085... 9 10 a pupper https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 Yorkshire_terrier 0.467202 True cairn 4.401220e-01 True silky_terrier 5.869010e-02 True 254 713
7151 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" r... This is a Helvetica Listerine named Rufus. Thi... NaN NaN NaN https://twitter.com/dog_rates/status/671147085... 9 10 a puppo https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 Yorkshire_terrier 0.467202 True cairn 4.401220e-01 True silky_terrier 5.869010e-02 True 254 713
7153 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" r... Neat pup here. Enjoys lettuce. Long af ears. S... NaN NaN NaN https://twitter.com/dog_rates/status/671141549... 9 10 None floofer https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 guinea_pig 0.387728 False wood_rabbit 1.716810e-01 False borzoi 7.535770e-02 True 713 1246
7154 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" r... Neat pup here. Enjoys lettuce. Long af ears. S... NaN NaN NaN https://twitter.com/dog_rates/status/671141549... 9 10 None pupper https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 guinea_pig 0.387728 False wood_rabbit 1.716810e-01 False borzoi 7.535770e-02 True 713 1246
7155 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" r... Neat pup here. Enjoys lettuce. Long af ears. S... NaN NaN NaN https://twitter.com/dog_rates/status/671141549... 9 10 None puppo https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 guinea_pig 0.387728 False wood_rabbit 1.716810e-01 False borzoi 7.535770e-02 True 713 1246
7157 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" r... Me running from commitment. 10/10 https://t.co... NaN NaN NaN https://twitter.com/dog_rates/status/671138694... 10 10 None floofer https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 Samoyed 0.587342 True Great_Pyrenees 2.689520e-01 True Pekinese 9.052750e-02 True 448 996
7158 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" r... Me running from commitment. 10/10 https://t.co... NaN NaN NaN https://twitter.com/dog_rates/status/671138694... 10 10 None pupper https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 Samoyed 0.587342 True Great_Pyrenees 2.689520e-01 True Pekinese 9.052750e-02 True 448 996
7159 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" r... Me running from commitment. 10/10 https://t.co... NaN NaN NaN https://twitter.com/dog_rates/status/671138694... 10 10 None puppo https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 Samoyed 0.587342 True Great_Pyrenees 2.689520e-01 True Pekinese 9.052750e-02 True 448 996
7161 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. He's a western Alkaline... NaN NaN NaN https://twitter.com/dog_rates/status/671134062... 8 10 Clarence floofer https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 Shih-Tzu 0.180380 True golden_retriever 1.801940e-01 True Labrador_retriever 1.736560e-01 True 212 796
7162 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. He's a western Alkaline... NaN NaN NaN https://twitter.com/dog_rates/status/671134062... 8 10 Clarence pupper https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 Shih-Tzu 0.180380 True golden_retriever 1.801940e-01 True Labrador_retriever 1.736560e-01 True 212 796
7163 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. He's a western Alkaline... NaN NaN NaN https://twitter.com/dog_rates/status/671134062... 8 10 Clarence puppo https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 Shih-Tzu 0.180380 True golden_retriever 1.801940e-01 True Labrador_retriever 1.736560e-01 True 212 796
7165 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" r... Two miniature golden retrievers here. Webbed p... NaN NaN NaN https://twitter.com/dog_rates/status/671122204... 4 10 None floofer https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 goose 0.351957 False Chihuahua 1.012280e-01 True hen 6.581760e-02 False 2763 3729
7166 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" r... Two miniature golden retrievers here. Webbed p... NaN NaN NaN https://twitter.com/dog_rates/status/671122204... 4 10 None pupper https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 goose 0.351957 False Chihuahua 1.012280e-01 True hen 6.581760e-02 False 2763 3729
7167 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" r... Two miniature golden retrievers here. Webbed p... NaN NaN NaN https://twitter.com/dog_rates/status/671122204... 4 10 None puppo https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 goose 0.351957 False Chihuahua 1.012280e-01 True hen 6.581760e-02 False 2763 3729
7169 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phred. He isn't steering, looking at the ... NaN NaN NaN https://twitter.com/dog_rates/status/671115716... 6 10 Phred floofer https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 malinois 0.406341 True kelpie 1.433660e-01 True dingo 1.298020e-01 False 842 1436
7170 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phred. He isn't steering, looking at the ... NaN NaN NaN https://twitter.com/dog_rates/status/671115716... 6 10 Phred pupper https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 malinois 0.406341 True kelpie 1.433660e-01 True dingo 1.298020e-01 False 842 1436
7171 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phred. He isn't steering, looking at the ... NaN NaN NaN https://twitter.com/dog_rates/status/671115716... 6 10 Phred puppo https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 malinois 0.406341 True kelpie 1.433660e-01 True dingo 1.298020e-01 False 842 1436
7173 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He asked for chocolate cake for ... NaN NaN NaN https://twitter.com/dog_rates/status/671109016... 8 10 Toby floofer https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 basenji 0.855959 True beagle 3.672310e-02 True toy_terrier 2.925780e-02 True 478 1225
7174 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He asked for chocolate cake for ... NaN NaN NaN https://twitter.com/dog_rates/status/671109016... 8 10 Toby pupper https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 basenji 0.855959 True beagle 3.672310e-02 True toy_terrier 2.925780e-02 True 478 1225
7175 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He asked for chocolate cake for ... NaN NaN NaN https://twitter.com/dog_rates/status/671109016... 8 10 Toby puppo https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 basenji 0.855959 True beagle 3.672310e-02 True toy_terrier 2.925780e-02 True 478 1225
7177 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle this job anymore your dogs ... NaN NaN NaN https://twitter.com/dog_rates/status/670995969... 12 10 None floofer https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 redbone 0.866221 True beagle 6.119400e-02 True Rhodesian_ridgeback 2.428450e-02 True 317 1175
7178 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle this job anymore your dogs ... NaN NaN NaN https://twitter.com/dog_rates/status/670995969... 12 10 None pupper https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 redbone 0.866221 True beagle 6.119400e-02 True Rhodesian_ridgeback 2.428450e-02 True 317 1175
7179 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle this job anymore your dogs ... NaN NaN NaN https://twitter.com/dog_rates/status/670995969... 12 10 None puppo https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 redbone 0.866221 True beagle 6.119400e-02 True Rhodesian_ridgeback 2.428450e-02 True 317 1175
7181 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests... here you go.\n\nGood... NaN NaN NaN https://twitter.com/dog_rates/status/670842764... 420 10 None floofer https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 microphone 0.096063 False accordion 9.407470e-02 False drumstick 6.111280e-02 False 4324 7989
7182 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests... here you go.\n\nGood... NaN NaN NaN https://twitter.com/dog_rates/status/670842764... 420 10 None pupper https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 microphone 0.096063 False accordion 9.407470e-02 False drumstick 6.111280e-02 False 4324 7989
7183 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests... here you go.\n\nGood... NaN NaN NaN https://twitter.com/dog_rates/status/670842764... 420 10 None puppo https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 microphone 0.096063 False accordion 9.407470e-02 False drumstick 6.111280e-02 False 4324 7989
7185 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Colby. He's that one cool friend that get... NaN NaN NaN https://twitter.com/dog_rates/status/670840546... 10 10 Colby floofer https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 Shih-Tzu 0.963622 True Lhasa 1.601670e-02 True guinea_pig 7.931920e-03 False 213 634
7186 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Colby. He's that one cool friend that get... NaN NaN NaN https://twitter.com/dog_rates/status/670840546... 10 10 Colby pupper https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 Shih-Tzu 0.963622 True Lhasa 1.601670e-02 True guinea_pig 7.931920e-03 False 213 634
7187 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Colby. He's that one cool friend that get... NaN NaN NaN https://twitter.com/dog_rates/status/670840546... 10 10 Colby puppo https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 Shih-Tzu 0.963622 True Lhasa 1.601670e-02 True guinea_pig 7.931920e-03 False 213 634
7189 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" r... Pink dogs here. Unreasonably long necks. Left ... NaN NaN NaN https://twitter.com/dog_rates/status/670838202... 4 10 None floofer https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 flamingo 0.992710 False coral_fungus 3.490810e-03 False stinkhorn 1.858950e-03 False 758 1189
7190 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" r... Pink dogs here. Unreasonably long necks. Left ... NaN NaN NaN https://twitter.com/dog_rates/status/670838202... 4 10 None pupper https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 flamingo 0.992710 False coral_fungus 3.490810e-03 False stinkhorn 1.858950e-03 False 758 1189
7191 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" r... Pink dogs here. Unreasonably long necks. Left ... NaN NaN NaN https://twitter.com/dog_rates/status/670838202... 4 10 None puppo https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 flamingo 0.992710 False coral_fungus 3.490810e-03 False stinkhorn 1.858950e-03 False 758 1189
7193 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jett. He is unimpressed by flower. 7/1... NaN NaN NaN https://twitter.com/dog_rates/status/670833812... 7 10 Jett floofer https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 Pekinese 0.609853 True Persian_cat 2.654420e-01 False Japanese_spaniel 2.746040e-02 True 135 474
7194 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jett. He is unimpressed by flower. 7/1... NaN NaN NaN https://twitter.com/dog_rates/status/670833812... 7 10 Jett pupper https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 Pekinese 0.609853 True Persian_cat 2.654420e-01 False Japanese_spaniel 2.746040e-02 True 135 474
7195 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jett. He is unimpressed by flower. 7/1... NaN NaN NaN https://twitter.com/dog_rates/status/670833812... 7 10 Jett puppo https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 Pekinese 0.609853 True Persian_cat 2.654420e-01 False Japanese_spaniel 2.746040e-02 True 135 474
7197 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Amy. She is Queen Starburst. 10/10 une... NaN NaN NaN https://twitter.com/dog_rates/status/670832455... 10 10 Amy floofer https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 malinois 0.317607 True Norwegian_elkhound 2.749010e-01 True bathing_cap 1.146430e-01 False 242 780
7198 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Amy. She is Queen Starburst. 10/10 une... NaN NaN NaN https://twitter.com/dog_rates/status/670832455... 10 10 Amy pupper https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 malinois 0.317607 True Norwegian_elkhound 2.749010e-01 True bathing_cap 1.146430e-01 False 242 780
7199 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Amy. She is Queen Starburst. 10/10 une... NaN NaN NaN https://twitter.com/dog_rates/status/670832455... 10 10 Amy puppo https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 malinois 0.317607 True Norwegian_elkhound 2.749010e-01 True bathing_cap 1.146430e-01 False 242 780
7201 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" r... Scary dog here. Too many legs. Extra tail. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670826280... 2 10 None floofer https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 scorpion 0.927956 False tarantula 2.163100e-02 False wolf_spider 1.483750e-02 False 4485 5961
7202 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" r... Scary dog here. Too many legs. Extra tail. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670826280... 2 10 None pupper https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 scorpion 0.927956 False tarantula 2.163100e-02 False wolf_spider 1.483750e-02 False 4485 5961
7203 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" r... Scary dog here. Too many legs. Extra tail. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670826280... 2 10 None puppo https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 scorpion 0.927956 False tarantula 2.163100e-02 False wolf_spider 1.483750e-02 False 4485 5961
7205 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He's a man dime. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/670823764... 12 10 Remington floofer https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 Labrador_retriever 0.947453 True German_short-haired_pointer 1.700060e-02 True Weimaraner 1.543210e-02 True 205 824
7206 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He's a man dime. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/670823764... 12 10 Remington pupper https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 Labrador_retriever 0.947453 True German_short-haired_pointer 1.700060e-02 True Weimaraner 1.543210e-02 True 205 824
7207 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He's a man dime. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/670823764... 12 10 Remington puppo https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 Labrador_retriever 0.947453 True German_short-haired_pointer 1.700060e-02 True Weimaraner 1.543210e-02 True 205 824
7209 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" r... Can't do better than this lol. 10/10 for the o... NaN NaN NaN https://twitter.com/dog_rates/status/670822709... 10 10 None floofer https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 web_site 0.993887 False Chihuahua 1.251520e-03 True menu 5.987510e-04 False 105 647
7210 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" r... Can't do better than this lol. 10/10 for the o... NaN NaN NaN https://twitter.com/dog_rates/status/670822709... 10 10 None pupper https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 web_site 0.993887 False Chihuahua 1.251520e-03 True menu 5.987510e-04 False 105 647
7211 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" r... Can't do better than this lol. 10/10 for the o... NaN NaN NaN https://twitter.com/dog_rates/status/670822709... 10 10 None puppo https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 web_site 0.993887 False Chihuahua 1.251520e-03 True menu 5.987510e-04 False 105 647
7213 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Sage. He likes to burn shit. 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/670815497... 10 10 Sage floofer https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 American_Staffordshire_terrier 0.919714 True Staffordshire_bullterrier 7.343020e-02 True bull_mastiff 9.056790e-04 True 1708 3410
7214 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Sage. He likes to burn shit. 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/670815497... 10 10 Sage pupper https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 American_Staffordshire_terrier 0.919714 True Staffordshire_bullterrier 7.343020e-02 True bull_mastiff 9.056790e-04 True 1708 3410
7215 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Sage. He likes to burn shit. 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/670815497... 10 10 Sage puppo https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 American_Staffordshire_terrier 0.919714 True Staffordshire_bullterrier 7.343020e-02 True bull_mastiff 9.056790e-04 True 1708 3410
7217 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She enjoys her stick in the yard.... NaN NaN NaN https://twitter.com/dog_rates/status/670811965... 10 10 Maggie floofer https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 basset 0.994090 True Walker_hound 3.972680e-03 True beagle 1.406190e-03 True 295 1202
7218 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She enjoys her stick in the yard.... NaN NaN NaN https://twitter.com/dog_rates/status/670811965... 10 10 Maggie pupper https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 basset 0.994090 True Walker_hound 3.972680e-03 True beagle 1.406190e-03 True 295 1202
7219 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She enjoys her stick in the yard.... NaN NaN NaN https://twitter.com/dog_rates/status/670811965... 10 10 Maggie puppo https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 basset 0.994090 True Walker_hound 3.972680e-03 True beagle 1.406190e-03 True 295 1202
7221 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Andy. He can balance on one foot,... NaN NaN NaN https://twitter.com/dog_rates/status/670807719... 11 10 Andy floofer https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old_English_sheepdog 0.958035 True Sealyham_terrier 1.389220e-02 True Border_collie 4.601140e-03 True 546 1234
7222 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Andy. He can balance on one foot,... NaN NaN NaN https://twitter.com/dog_rates/status/670807719... 11 10 Andy pupper https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old_English_sheepdog 0.958035 True Sealyham_terrier 1.389220e-02 True Border_collie 4.601140e-03 True 546 1234
7223 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Andy. He can balance on one foot,... NaN NaN NaN https://twitter.com/dog_rates/status/670807719... 11 10 Andy puppo https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old_English_sheepdog 0.958035 True Sealyham_terrier 1.389220e-02 True Border_collie 4.601140e-03 True 546 1234
7225 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Mason. He's a total frat boy. Pretends to... NaN NaN NaN https://twitter.com/dog_rates/status/670804601... 10 10 Mason floofer https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 Pomeranian 0.868560 True Pekinese 9.012920e-02 True chow 2.172210e-02 True 1035 2098
7226 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Mason. He's a total frat boy. Pretends to... NaN NaN NaN https://twitter.com/dog_rates/status/670804601... 10 10 Mason pupper https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 Pomeranian 0.868560 True Pekinese 9.012920e-02 True chow 2.172210e-02 True 1035 2098
7227 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Mason. He's a total frat boy. Pretends to... NaN NaN NaN https://twitter.com/dog_rates/status/670804601... 10 10 Mason puppo https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 Pomeranian 0.868560 True Pekinese 9.012920e-02 True chow 2.172210e-02 True 1035 2098
7229 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" r... I would do radical things in the name of Dog G... NaN NaN NaN https://twitter.com/dog_rates/status/670803562... 10 10 None floofer https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 basenji 0.344101 True Ibizan_hound 2.102820e-01 True toy_terrier 1.962790e-01 True 95 362
7230 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" r... I would do radical things in the name of Dog G... NaN NaN NaN https://twitter.com/dog_rates/status/670803562... 10 10 None pupper https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 basenji 0.344101 True Ibizan_hound 2.102820e-01 True toy_terrier 1.962790e-01 True 95 362
7231 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" r... I would do radical things in the name of Dog G... NaN NaN NaN https://twitter.com/dog_rates/status/670803562... 10 10 None puppo https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 basenji 0.344101 True Ibizan_hound 2.102820e-01 True toy_terrier 1.962790e-01 True 95 362
7233 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Trigger. He was minding his own busine... NaN NaN NaN https://twitter.com/dog_rates/status/670797304... 11 10 Trigger floofer https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 Pembroke 0.472197 True beagle 9.093800e-02 True German_shepherd 6.436600e-02 True 262 780
7234 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Trigger. He was minding his own busine... NaN NaN NaN https://twitter.com/dog_rates/status/670797304... 11 10 Trigger pupper https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 Pembroke 0.472197 True beagle 9.093800e-02 True German_shepherd 6.436600e-02 True 262 780
7235 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Trigger. He was minding his own busine... NaN NaN NaN https://twitter.com/dog_rates/status/670797304... 11 10 Trigger puppo https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 Pembroke 0.472197 True beagle 9.093800e-02 True German_shepherd 6.436600e-02 True 262 780
7237 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Antony. He's a Sheraton Tetrahedron. S... NaN NaN NaN https://twitter.com/dog_rates/status/670792680... 7 10 Antony floofer https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 brown_bear 0.882426 False toy_poodle 3.135500e-02 True miniature_poodle 2.574340e-02 True 298 889
7238 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Antony. He's a Sheraton Tetrahedron. S... NaN NaN NaN https://twitter.com/dog_rates/status/670792680... 7 10 Antony pupper https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 brown_bear 0.882426 False toy_poodle 3.135500e-02 True miniature_poodle 2.574340e-02 True 298 889
7239 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Antony. He's a Sheraton Tetrahedron. S... NaN NaN NaN https://twitter.com/dog_rates/status/670792680... 7 10 Antony puppo https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 brown_bear 0.882426 False toy_poodle 3.135500e-02 True miniature_poodle 2.574340e-02 True 298 889
7241 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" r... Two obedient dogs here. Left one has extra leg... NaN NaN NaN https://twitter.com/dog_rates/status/670789397... 9 10 None floofer https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 beagle 0.295966 True basset 1.435270e-01 True bluetick 1.389920e-01 True 255 700
7242 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" r... Two obedient dogs here. Left one has extra leg... NaN NaN NaN https://twitter.com/dog_rates/status/670789397... 9 10 None pupper https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 beagle 0.295966 True basset 1.435270e-01 True bluetick 1.389920e-01 True 255 700
7243 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" r... Two obedient dogs here. Left one has extra leg... NaN NaN NaN https://twitter.com/dog_rates/status/670789397... 9 10 None puppo https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 beagle 0.295966 True basset 1.435270e-01 True bluetick 1.389920e-01 True 255 700
7245 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Creg. You offered him a ride to work b... NaN NaN NaN https://twitter.com/dog_rates/status/670786190... 8 10 Creg floofer https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 dingo 0.777124 False Pembroke 1.274380e-01 True Cardigan 2.400660e-02 True 218 640
7246 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Creg. You offered him a ride to work b... NaN NaN NaN https://twitter.com/dog_rates/status/670786190... 8 10 Creg pupper https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 dingo 0.777124 False Pembroke 1.274380e-01 True Cardigan 2.400660e-02 True 218 640
7247 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Creg. You offered him a ride to work b... NaN NaN NaN https://twitter.com/dog_rates/status/670786190... 8 10 Creg puppo https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 dingo 0.777124 False Pembroke 1.274380e-01 True Cardigan 2.400660e-02 True 218 640
7249 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" r... Flamboyant pup here. Probably poisonous. Won't... NaN NaN NaN https://twitter.com/dog_rates/status/670783437... 1 10 None floofer https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 lacewing 0.381955 False sulphur_butterfly 1.068100e-01 False leafhopper 6.834690e-02 False 431 872
7250 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" r... Flamboyant pup here. Probably poisonous. Won't... NaN NaN NaN https://twitter.com/dog_rates/status/670783437... 1 10 None pupper https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 lacewing 0.381955 False sulphur_butterfly 1.068100e-01 False leafhopper 6.834690e-02 False 431 872
7251 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" r... Flamboyant pup here. Probably poisonous. Won't... NaN NaN NaN https://twitter.com/dog_rates/status/670783437... 1 10 None puppo https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 lacewing 0.381955 False sulphur_butterfly 1.068100e-01 False leafhopper 6.834690e-02 False 431 872
7253 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This dude slaps your girl's ass what do you do... NaN NaN NaN https://twitter.com/dog_rates/status/670782429... 5 10 None floofer https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 Chihuahua 0.952963 True French_bulldog 3.657470e-02 True Boston_bull 1.977400e-03 True 863 1691
7254 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This dude slaps your girl's ass what do you do... NaN NaN NaN https://twitter.com/dog_rates/status/670782429... 5 10 None pupper https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 Chihuahua 0.952963 True French_bulldog 3.657470e-02 True Boston_bull 1.977400e-03 True 863 1691
7255 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This dude slaps your girl's ass what do you do... NaN NaN NaN https://twitter.com/dog_rates/status/670782429... 5 10 None puppo https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 Chihuahua 0.952963 True French_bulldog 3.657470e-02 True Boston_bull 1.977400e-03 True 863 1691
7257 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Traviss. He has no ears. Two rare dogs... NaN NaN NaN https://twitter.com/dog_rates/status/670780561... 7 10 Traviss floofer https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 Labrador_retriever 0.244889 True American_black_bear 5.699350e-02 False brown_bear 5.399260e-02 False 317 831
7258 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Traviss. He has no ears. Two rare dogs... NaN NaN NaN https://twitter.com/dog_rates/status/670780561... 7 10 Traviss pupper https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 Labrador_retriever 0.244889 True American_black_bear 5.699350e-02 False brown_bear 5.399260e-02 False 317 831
7259 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Traviss. He has no ears. Two rare dogs... NaN NaN NaN https://twitter.com/dog_rates/status/670780561... 7 10 Traviss puppo https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 Labrador_retriever 0.244889 True American_black_bear 5.699350e-02 False brown_bear 5.399260e-02 False 317 831
7261 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... "To bone or not to bone?"\n10/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/670778058... 10 10 None floofer https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 pug 0.776612 True Brabancon_griffon 1.120320e-01 True boxer 3.905140e-02 True 77 345
7262 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... "To bone or not to bone?"\n10/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/670778058... 10 10 None pupper https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 pug 0.776612 True Brabancon_griffon 1.120320e-01 True boxer 3.905140e-02 True 77 345
7263 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... "To bone or not to bone?"\n10/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/670778058... 10 10 None puppo https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 pug 0.776612 True Brabancon_griffon 1.120320e-01 True boxer 3.905140e-02 True 77 345
7265 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vincent. He's a wild Adderall Cayenne. Sh... NaN NaN NaN https://twitter.com/dog_rates/status/670764103... 10 10 Vincent floofer https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 Norfolk_terrier 0.172850 True golden_retriever 7.270220e-02 True television 3.749420e-02 False 466 1154
7266 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vincent. He's a wild Adderall Cayenne. Sh... NaN NaN NaN https://twitter.com/dog_rates/status/670764103... 10 10 Vincent pupper https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 Norfolk_terrier 0.172850 True golden_retriever 7.270220e-02 True television 3.749420e-02 False 466 1154
7267 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vincent. He's a wild Adderall Cayenne. Sh... NaN NaN NaN https://twitter.com/dog_rates/status/670764103... 10 10 Vincent puppo https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 Norfolk_terrier 0.172850 True golden_retriever 7.270220e-02 True television 3.749420e-02 False 466 1154
7269 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gin &amp; Tonic. They're having a... NaN NaN NaN https://twitter.com/dog_rates/status/670755717... 9 10 Gin floofer https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 keeshond 0.994065 True Norwegian_elkhound 1.827480e-03 True cairn 1.821310e-03 True 123 475
7270 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gin &amp; Tonic. They're having a... NaN NaN NaN https://twitter.com/dog_rates/status/670755717... 9 10 Gin pupper https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 keeshond 0.994065 True Norwegian_elkhound 1.827480e-03 True cairn 1.821310e-03 True 123 475
7271 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gin &amp; Tonic. They're having a... NaN NaN NaN https://twitter.com/dog_rates/status/670755717... 9 10 Gin puppo https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 keeshond 0.994065 True Norwegian_elkhound 1.827480e-03 True cairn 1.821310e-03 True 123 475
7273 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a great listener. Low main... NaN NaN NaN https://twitter.com/dog_rates/status/670733412... 8 10 Jerry floofer https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 dhole 0.350416 False hare 2.366610e-01 False wood_rabbit 9.113280e-02 False 558 1030
7274 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a great listener. Low main... NaN NaN NaN https://twitter.com/dog_rates/status/670733412... 8 10 Jerry pupper https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 dhole 0.350416 False hare 2.366610e-01 False wood_rabbit 9.113280e-02 False 558 1030
7275 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a great listener. Low main... NaN NaN NaN https://twitter.com/dog_rates/status/670733412... 8 10 Jerry puppo https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 dhole 0.350416 False hare 2.366610e-01 False wood_rabbit 9.113280e-02 False 558 1030
7277 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrie. He's a handheld pup. Excellen... NaN NaN NaN https://twitter.com/dog_rates/status/670727704... 10 10 Jeffrie floofer https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 wood_rabbit 0.368562 False tabby 3.096750e-01 False Egyptian_cat 1.549140e-01 False 403 887
7278 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrie. He's a handheld pup. Excellen... NaN NaN NaN https://twitter.com/dog_rates/status/670727704... 10 10 Jeffrie pupper https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 wood_rabbit 0.368562 False tabby 3.096750e-01 False Egyptian_cat 1.549140e-01 False 403 887
7279 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrie. He's a handheld pup. Excellen... NaN NaN NaN https://twitter.com/dog_rates/status/670727704... 10 10 Jeffrie puppo https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 wood_rabbit 0.368562 False tabby 3.096750e-01 False Egyptian_cat 1.549140e-01 False 403 887
7281 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" r... *screams for a little bit and then crumples to... NaN NaN NaN https://twitter.com/dog_rates/status/670717338... 12 10 None floofer https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 Pomeranian 0.368161 True Pekinese 3.509730e-01 True golden_retriever 1.149020e-01 True 547 1301
7282 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" r... *screams for a little bit and then crumples to... NaN NaN NaN https://twitter.com/dog_rates/status/670717338... 12 10 None pupper https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 Pomeranian 0.368161 True Pekinese 3.509730e-01 True golden_retriever 1.149020e-01 True 547 1301
7283 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" r... *screams for a little bit and then crumples to... NaN NaN NaN https://twitter.com/dog_rates/status/670717338... 12 10 None puppo https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 Pomeranian 0.368161 True Pekinese 3.509730e-01 True golden_retriever 1.149020e-01 True 547 1301
7285 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Danny. He's too good to look at the road ... NaN NaN NaN https://twitter.com/dog_rates/status/670704688... 6 10 Danny floofer https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 Norwich_terrier 0.419838 True cairn 3.518760e-01 True Norfolk_terrier 5.109370e-02 True 405 814
7286 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Danny. He's too good to look at the road ... NaN NaN NaN https://twitter.com/dog_rates/status/670704688... 6 10 Danny pupper https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 Norwich_terrier 0.419838 True cairn 3.518760e-01 True Norfolk_terrier 5.109370e-02 True 405 814
7287 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Danny. He's too good to look at the road ... NaN NaN NaN https://twitter.com/dog_rates/status/670704688... 6 10 Danny puppo https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 Norwich_terrier 0.419838 True cairn 3.518760e-01 True Norfolk_terrier 5.109370e-02 True 405 814
7289 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ester. He has a cocaine problem. This ... NaN NaN NaN https://twitter.com/dog_rates/status/670691627... 8 10 Ester floofer https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 Shetland_sheepdog 0.071124 True home_theater 6.839780e-02 False American_Staffordshire_terrier 6.696390e-02 True 266 632
7290 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ester. He has a cocaine problem. This ... NaN NaN NaN https://twitter.com/dog_rates/status/670691627... 8 10 Ester pupper https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 Shetland_sheepdog 0.071124 True home_theater 6.839780e-02 False American_Staffordshire_terrier 6.696390e-02 True 266 632
7291 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ester. He has a cocaine problem. This ... NaN NaN NaN https://twitter.com/dog_rates/status/670691627... 8 10 Ester puppo https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 Shetland_sheepdog 0.071124 True home_theater 6.839780e-02 False American_Staffordshire_terrier 6.696390e-02 True 266 632
7293 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... NaN NaN NaN https://twitter.com/dog_rates/status/670679630... 8 10 Pluto floofer https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7294 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... NaN NaN NaN https://twitter.com/dog_rates/status/670679630... 8 10 Pluto pupper https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7295 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... NaN NaN NaN https://twitter.com/dog_rates/status/670679630... 8 10 Pluto puppo https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7297 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/670676092... 8 10 Bloo floofer https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7298 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/670676092... 8 10 Bloo pupper https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7299 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/670676092... 8 10 Bloo puppo https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7301 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... NaN NaN NaN https://twitter.com/dog_rates/status/670668383... 10 10 Phineas floofer https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7302 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... NaN NaN NaN https://twitter.com/dog_rates/status/670668383... 10 10 Phineas pupper https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7303 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... NaN NaN NaN https://twitter.com/dog_rates/status/670668383... 10 10 Phineas puppo https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7305 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... NaN NaN NaN https://twitter.com/dog_rates/status/670474236... 10 10 None floofer https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7306 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... NaN NaN NaN https://twitter.com/dog_rates/status/670474236... 10 10 None pupper https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7307 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... NaN NaN NaN https://twitter.com/dog_rates/status/670474236... 10 10 None puppo https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7309 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... NaN NaN NaN https://twitter.com/dog_rates/status/670468609... 10 10 Edd floofer https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7310 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... NaN NaN NaN https://twitter.com/dog_rates/status/670468609... 10 10 Edd pupper https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7311 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... NaN NaN NaN https://twitter.com/dog_rates/status/670468609... 10 10 Edd puppo https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7313 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... NaN NaN NaN https://twitter.com/dog_rates/status/670465786... 7 10 None floofer https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7314 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... NaN NaN NaN https://twitter.com/dog_rates/status/670465786... 7 10 None pupper https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7315 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... NaN NaN NaN https://twitter.com/dog_rates/status/670465786... 7 10 None puppo https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7317 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/670452855... 11 10 None floofer https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7318 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/670452855... 11 10 None pupper https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7319 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/670452855... 11 10 None puppo https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7321 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... 5 10 None floofer https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7322 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... 5 10 None pupper https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7323 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... 5 10 None puppo https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7325 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/670444955... 10 10 Paull floofer https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7326 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/670444955... 10 10 Paull pupper https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7327 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/670444955... 10 10 Paull puppo https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7329 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... NaN NaN NaN https://twitter.com/dog_rates/status/670442337... 11 10 Koda floofer https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7330 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... NaN NaN NaN https://twitter.com/dog_rates/status/670442337... 11 10 Koda pupper https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7331 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... NaN NaN NaN https://twitter.com/dog_rates/status/670442337... 11 10 Koda puppo https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7333 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... NaN NaN NaN https://twitter.com/dog_rates/status/670435821... 10 10 None floofer https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7334 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... NaN NaN NaN https://twitter.com/dog_rates/status/670435821... 10 10 None pupper https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7335 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... NaN NaN NaN https://twitter.com/dog_rates/status/670435821... 10 10 None puppo https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7337 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... NaN NaN NaN https://twitter.com/dog_rates/status/670434127... 11 10 Hank floofer https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7338 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... NaN NaN NaN https://twitter.com/dog_rates/status/670434127... 11 10 Hank pupper https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7339 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... NaN NaN NaN https://twitter.com/dog_rates/status/670434127... 11 10 Hank puppo https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7341 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... NaN NaN NaN https://twitter.com/dog_rates/status/670433248... 10 10 Sam floofer https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7342 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... NaN NaN NaN https://twitter.com/dog_rates/status/670433248... 10 10 Sam pupper https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7343 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... NaN NaN NaN https://twitter.com/dog_rates/status/670433248... 10 10 Sam puppo https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7345 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/670428280... 11 10 Willy floofer https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7346 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/670428280... 11 10 Willy pupper https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7347 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/670428280... 11 10 Willy puppo https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7349 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... NaN NaN NaN https://twitter.com/dog_rates/status/670427002... 9 10 a floofer https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7350 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... NaN NaN NaN https://twitter.com/dog_rates/status/670427002... 9 10 a pupper https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7351 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... NaN NaN NaN https://twitter.com/dog_rates/status/670427002... 9 10 a puppo https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7353 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925... 12 10 Herb floofer https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7354 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925... 12 10 Herb pupper https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7355 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925... 12 10 Herb puppo https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7357 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... NaN NaN NaN https://twitter.com/dog_rates/status/670420569... 10 10 Damon floofer https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7358 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... NaN NaN NaN https://twitter.com/dog_rates/status/670420569... 10 10 Damon pupper https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7359 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... NaN NaN NaN https://twitter.com/dog_rates/status/670420569... 10 10 Damon puppo https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7361 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670417414... 6 10 None floofer https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7362 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670417414... 6 10 None pupper https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7363 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670417414... 6 10 None puppo https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7365 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... NaN NaN NaN https://twitter.com/dog_rates/status/670411370... 12 10 Scooter floofer https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7366 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... NaN NaN NaN https://twitter.com/dog_rates/status/670411370... 12 10 Scooter pupper https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7367 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... NaN NaN NaN https://twitter.com/dog_rates/status/670411370... 12 10 Scooter puppo https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7369 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... NaN NaN NaN https://twitter.com/dog_rates/status/670408998... 10 10 Peanut floofer https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7370 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... NaN NaN NaN https://twitter.com/dog_rates/status/670408998... 10 10 Peanut pupper https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7371 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... NaN NaN NaN https://twitter.com/dog_rates/status/670408998... 10 10 Peanut puppo https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7373 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... NaN NaN NaN https://twitter.com/dog_rates/status/670403879... 10 10 Nigel floofer https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7374 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... NaN NaN NaN https://twitter.com/dog_rates/status/670403879... 10 10 Nigel pupper https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7375 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... NaN NaN NaN https://twitter.com/dog_rates/status/670403879... 10 10 Nigel puppo https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7377 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... NaN NaN NaN https://twitter.com/dog_rates/status/670385711... 8 10 Larry floofer https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7378 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... NaN NaN NaN https://twitter.com/dog_rates/status/670385711... 8 10 Larry pupper https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7379 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... NaN NaN NaN https://twitter.com/dog_rates/status/670385711... 8 10 Larry puppo https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7381 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... NaN NaN NaN https://twitter.com/dog_rates/status/670374371... 12 10 Daisy floofer https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7382 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... NaN NaN NaN https://twitter.com/dog_rates/status/670374371... 12 10 Daisy pupper https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7383 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... NaN NaN NaN https://twitter.com/dog_rates/status/670374371... 12 10 Daisy puppo https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7385 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... NaN NaN NaN https://twitter.com/dog_rates/status/670361874... 9 10 a floofer https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7386 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... NaN NaN NaN https://twitter.com/dog_rates/status/670361874... 9 10 a pupper https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7387 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... NaN NaN NaN https://twitter.com/dog_rates/status/670361874... 9 10 a puppo https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7389 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... NaN NaN NaN https://twitter.com/dog_rates/status/670338931... 10 10 Butters floofer https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7390 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... NaN NaN NaN https://twitter.com/dog_rates/status/670338931... 10 10 Butters pupper https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7391 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... NaN NaN NaN https://twitter.com/dog_rates/status/670338931... 10 10 Butters puppo https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7393 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... NaN NaN NaN https://twitter.com/dog_rates/status/670319130... 11 10 None floofer https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7394 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... NaN NaN NaN https://twitter.com/dog_rates/status/670319130... 11 10 None pupper https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7395 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... NaN NaN NaN https://twitter.com/dog_rates/status/670319130... 11 10 None puppo https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7397 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... NaN NaN NaN https://twitter.com/dog_rates/status/670303360... 9 10 a floofer https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7398 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... NaN NaN NaN https://twitter.com/dog_rates/status/670303360... 9 10 a pupper https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7399 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... NaN NaN NaN https://twitter.com/dog_rates/status/670303360... 9 10 a puppo https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7401 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... NaN NaN NaN https://twitter.com/dog_rates/status/670290420... 11 10 Sandra floofer https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7402 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... NaN NaN NaN https://twitter.com/dog_rates/status/670290420... 11 10 Sandra pupper https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7403 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... NaN NaN NaN https://twitter.com/dog_rates/status/670290420... 11 10 Sandra puppo https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7405 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... NaN NaN NaN https://twitter.com/dog_rates/status/670093938... 9 10 Wally floofer https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7406 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... NaN NaN NaN https://twitter.com/dog_rates/status/670093938... 9 10 Wally pupper https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7407 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... NaN NaN NaN https://twitter.com/dog_rates/status/670093938... 9 10 Wally puppo https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7409 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... NaN NaN NaN https://twitter.com/dog_rates/status/670086499... 10 10 None floofer https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7410 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... NaN NaN NaN https://twitter.com/dog_rates/status/670086499... 10 10 None pupper https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7411 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... NaN NaN NaN https://twitter.com/dog_rates/status/670086499... 10 10 None puppo https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7413 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... NaN NaN NaN https://twitter.com/dog_rates/status/670079681... 10 10 Fabio floofer https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7414 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... NaN NaN NaN https://twitter.com/dog_rates/status/670079681... 10 10 Fabio pupper https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7415 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... NaN NaN NaN https://twitter.com/dog_rates/status/670079681... 10 10 Fabio puppo https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7417 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/670073503... 10 10 Winston floofer https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7418 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/670073503... 10 10 Winston pupper https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7419 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/670073503... 10 10 Winston puppo https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7421 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... NaN NaN NaN https://twitter.com/dog_rates/status/670069087... 5 10 Randall floofer https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7422 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... NaN NaN NaN https://twitter.com/dog_rates/status/670069087... 5 10 Randall pupper https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7423 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... NaN NaN NaN https://twitter.com/dog_rates/status/670069087... 5 10 Randall puppo https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7425 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... NaN NaN NaN https://twitter.com/dog_rates/status/670061506... 11 10 Liam floofer https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7426 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... NaN NaN NaN https://twitter.com/dog_rates/status/670061506... 11 10 Liam pupper https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7427 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... NaN NaN NaN https://twitter.com/dog_rates/status/670061506... 11 10 Liam puppo https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7429 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... NaN NaN NaN https://twitter.com/dog_rates/status/670055038... 3 10 Tommy floofer https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7430 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... NaN NaN NaN https://twitter.com/dog_rates/status/670055038... 3 10 Tommy pupper https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7431 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... NaN NaN NaN https://twitter.com/dog_rates/status/670055038... 3 10 Tommy puppo https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7433 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... NaN NaN NaN https://twitter.com/dog_rates/status/670046952... 11 10 Ben floofer https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7434 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... NaN NaN NaN https://twitter.com/dog_rates/status/670046952... 11 10 Ben pupper https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7435 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... NaN NaN NaN https://twitter.com/dog_rates/status/670046952... 11 10 Ben puppo https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7437 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/670040295... 10 10 None floofer https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7438 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/670040295... 10 10 None pupper https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7439 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/670040295... 10 10 None puppo https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7441 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/670037189... 5 10 None floofer https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7442 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/670037189... 5 10 None pupper https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7443 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/670037189... 5 10 None puppo https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7445 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... NaN NaN NaN https://twitter.com/dog_rates/status/670003130... 10 10 Raphael floofer https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7446 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... NaN NaN NaN https://twitter.com/dog_rates/status/670003130... 10 10 Raphael pupper https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7447 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... NaN NaN NaN https://twitter.com/dog_rates/status/670003130... 10 10 Raphael puppo https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7449 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... NaN NaN NaN https://twitter.com/dog_rates/status/669993076... 9 10 Zoey floofer https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7450 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... NaN NaN NaN https://twitter.com/dog_rates/status/669993076... 9 10 Zoey pupper https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7451 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... NaN NaN NaN https://twitter.com/dog_rates/status/669993076... 9 10 Zoey puppo https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7453 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... NaN NaN NaN https://twitter.com/dog_rates/status/669972011... 10 10 None floofer https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7454 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... NaN NaN NaN https://twitter.com/dog_rates/status/669972011... 10 10 None pupper https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7455 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... NaN NaN NaN https://twitter.com/dog_rates/status/669972011... 10 10 None puppo https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7457 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... NaN NaN NaN https://twitter.com/dog_rates/status/669970042... 10 10 Julio floofer https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7458 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... NaN NaN NaN https://twitter.com/dog_rates/status/669970042... 10 10 Julio pupper https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7459 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... NaN NaN NaN https://twitter.com/dog_rates/status/669970042... 10 10 Julio puppo https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7461 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... NaN NaN NaN https://twitter.com/dog_rates/status/669942763... 11 10 Andru floofer https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7462 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... NaN NaN NaN https://twitter.com/dog_rates/status/669942763... 11 10 Andru pupper https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7463 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... NaN NaN NaN https://twitter.com/dog_rates/status/669942763... 11 10 Andru puppo https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7465 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... NaN NaN NaN https://twitter.com/dog_rates/status/669926384... 12 10 None floofer https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7466 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... NaN NaN NaN https://twitter.com/dog_rates/status/669926384... 12 10 None pupper https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7467 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... NaN NaN NaN https://twitter.com/dog_rates/status/669926384... 12 10 None puppo https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7469 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... NaN NaN NaN https://twitter.com/dog_rates/status/669923323... 10 10 a floofer https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7470 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... NaN NaN NaN https://twitter.com/dog_rates/status/669923323... 10 10 a pupper https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7471 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... NaN NaN NaN https://twitter.com/dog_rates/status/669923323... 10 10 a puppo https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7473 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... NaN NaN NaN https://twitter.com/dog_rates/status/669753178... 10 10 Chester floofer https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7474 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... NaN NaN NaN https://twitter.com/dog_rates/status/669753178... 10 10 Chester pupper https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7475 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... NaN NaN NaN https://twitter.com/dog_rates/status/669753178... 10 10 Chester puppo https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7477 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... NaN NaN NaN https://twitter.com/dog_rates/status/669749430... 8 10 Clarence floofer https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7478 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... NaN NaN NaN https://twitter.com/dog_rates/status/669749430... 8 10 Clarence pupper https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7479 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... NaN NaN NaN https://twitter.com/dog_rates/status/669749430... 8 10 Clarence puppo https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7481 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/669683899... 10 10 Kloey floofer https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7482 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/669683899... 10 10 Kloey pupper https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7483 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/669683899... 10 10 Kloey puppo https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7485 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... NaN NaN NaN https://twitter.com/dog_rates/status/669682095... 9 10 Louie floofer https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7486 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... NaN NaN NaN https://twitter.com/dog_rates/status/669682095... 9 10 Louie pupper https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7487 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... NaN NaN NaN https://twitter.com/dog_rates/status/669682095... 9 10 Louie puppo https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7489 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... NaN NaN NaN https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn floofer https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7490 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... NaN NaN NaN https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn pupper https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7491 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... NaN NaN NaN https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn puppo https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7493 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... NaN NaN NaN https://twitter.com/dog_rates/status/669661792... 5 10 a floofer https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7494 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... NaN NaN NaN https://twitter.com/dog_rates/status/669661792... 5 10 a pupper https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7495 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... NaN NaN NaN https://twitter.com/dog_rates/status/669661792... 5 10 a puppo https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7497 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... NaN NaN NaN https://twitter.com/dog_rates/status/669625907... 12 10 Penny floofer https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7498 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... NaN NaN NaN https://twitter.com/dog_rates/status/669625907... 12 10 Penny pupper https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7499 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... NaN NaN NaN https://twitter.com/dog_rates/status/669625907... 12 10 Penny puppo https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7501 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... NaN NaN NaN https://twitter.com/dog_rates/status/669603084... 10 10 None floofer https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7502 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... NaN NaN NaN https://twitter.com/dog_rates/status/669603084... 10 10 None pupper https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7503 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... NaN NaN NaN https://twitter.com/dog_rates/status/669603084... 10 10 None puppo https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7505 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... NaN NaN NaN https://twitter.com/dog_rates/status/669597912... 10 10 Skye floofer https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7506 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... NaN NaN NaN https://twitter.com/dog_rates/status/669597912... 10 10 Skye pupper https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7507 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... NaN NaN NaN https://twitter.com/dog_rates/status/669597912... 10 10 Skye puppo https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7509 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... NaN NaN NaN https://twitter.com/dog_rates/status/669583744... 6 10 None floofer https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7510 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... NaN NaN NaN https://twitter.com/dog_rates/status/669583744... 6 10 None pupper https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7511 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... NaN NaN NaN https://twitter.com/dog_rates/status/669583744... 6 10 None puppo https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7513 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... NaN NaN NaN https://twitter.com/dog_rates/status/669573570... 10 10 Linda floofer https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7514 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... NaN NaN NaN https://twitter.com/dog_rates/status/669573570... 10 10 Linda pupper https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7515 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... NaN NaN NaN https://twitter.com/dog_rates/status/669573570... 10 10 Linda puppo https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7517 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... NaN NaN NaN https://twitter.com/dog_rates/status/669571471... 7 10 Keith floofer https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7518 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... NaN NaN NaN https://twitter.com/dog_rates/status/669571471... 7 10 Keith pupper https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7519 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... NaN NaN NaN https://twitter.com/dog_rates/status/669571471... 7 10 Keith puppo https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7521 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... NaN NaN NaN https://twitter.com/dog_rates/status/669567591... 9 10 Kollin floofer https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7522 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... NaN NaN NaN https://twitter.com/dog_rates/status/669567591... 9 10 Kollin pupper https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7523 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... NaN NaN NaN https://twitter.com/dog_rates/status/669567591... 9 10 Kollin puppo https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7525 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... NaN NaN NaN https://twitter.com/dog_rates/status/669564461... 10 10 a floofer https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7526 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... NaN NaN NaN https://twitter.com/dog_rates/status/669564461... 10 10 a pupper https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7527 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... NaN NaN NaN https://twitter.com/dog_rates/status/669564461... 10 10 a puppo https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7529 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... NaN NaN NaN https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh floofer https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7530 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... NaN NaN NaN https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh pupper https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7531 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... NaN NaN NaN https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh puppo https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7533 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... NaN NaN NaN https://twitter.com/dog_rates/status/669375718... 6 10 Billl floofer https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7534 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... NaN NaN NaN https://twitter.com/dog_rates/status/669375718... 6 10 Billl pupper https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7535 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... NaN NaN NaN https://twitter.com/dog_rates/status/669375718... 6 10 Billl puppo https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7537 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... NaN NaN NaN https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér floofer https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7538 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... NaN NaN NaN https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér pupper https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7539 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... NaN NaN NaN https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér puppo https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7541 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... NaN NaN NaN https://twitter.com/dog_rates/status/669367896... 10 10 Chip floofer https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7542 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... NaN NaN NaN https://twitter.com/dog_rates/status/669367896... 10 10 Chip pupper https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7543 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... NaN NaN NaN https://twitter.com/dog_rates/status/669367896... 10 10 Chip puppo https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7545 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... NaN NaN NaN https://twitter.com/dog_rates/status/669363888... 10 10 None floofer https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7546 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... NaN NaN NaN https://twitter.com/dog_rates/status/669363888... 10 10 None pupper https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7547 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... NaN NaN NaN https://twitter.com/dog_rates/status/669363888... 10 10 None puppo https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7549 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... NaN NaN NaN https://twitter.com/dog_rates/status/669359674... 11 10 Saydee floofer https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7550 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... NaN NaN NaN https://twitter.com/dog_rates/status/669359674... 11 10 Saydee pupper https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7551 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... NaN NaN NaN https://twitter.com/dog_rates/status/669359674... 11 10 Saydee puppo https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7553 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/669354382... 8 10 Dug floofer https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7554 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/669354382... 8 10 Dug pupper https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7555 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/669354382... 8 10 Dug puppo https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7557 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... NaN NaN NaN https://twitter.com/dog_rates/status/669353438... 10 10 Tessa floofer https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7558 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... NaN NaN NaN https://twitter.com/dog_rates/status/669353438... 10 10 Tessa pupper https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7559 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... NaN NaN NaN https://twitter.com/dog_rates/status/669353438... 10 10 Tessa puppo https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7561 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/669351434... 10 10 Sully floofer https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7562 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/669351434... 10 10 Sully pupper https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7563 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/669351434... 10 10 Sully puppo https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7565 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... NaN NaN NaN https://twitter.com/dog_rates/status/669328503... 12 10 Kirk floofer https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7566 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... NaN NaN NaN https://twitter.com/dog_rates/status/669328503... 12 10 Kirk pupper https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7567 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... NaN NaN NaN https://twitter.com/dog_rates/status/669328503... 12 10 Kirk puppo https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7569 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... NaN NaN NaN https://twitter.com/dog_rates/status/669327207... 13 10 None floofer https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7570 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... NaN NaN NaN https://twitter.com/dog_rates/status/669327207... 13 10 None pupper https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7571 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... NaN NaN NaN https://twitter.com/dog_rates/status/669327207... 13 10 None puppo https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7573 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/669324657... 11 10 Ralf floofer https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7574 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/669324657... 11 10 Ralf pupper https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7575 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/669324657... 11 10 Ralf puppo https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7577 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... NaN NaN NaN https://twitter.com/dog_rates/status/669216679... 8 10 Clarq floofer https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7578 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... NaN NaN NaN https://twitter.com/dog_rates/status/669216679... 8 10 Clarq pupper https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7579 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... NaN NaN NaN https://twitter.com/dog_rates/status/669216679... 8 10 Clarq puppo https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7581 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... NaN NaN NaN https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers floofer https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7582 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... NaN NaN NaN https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers pupper https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7583 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... NaN NaN NaN https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers puppo https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7585 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... NaN NaN NaN https://twitter.com/dog_rates/status/669203728... 9 10 Samsom floofer https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7586 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... NaN NaN NaN https://twitter.com/dog_rates/status/669203728... 9 10 Samsom pupper https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7587 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... NaN NaN NaN https://twitter.com/dog_rates/status/669203728... 9 10 Samsom puppo https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7589 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... NaN NaN NaN https://twitter.com/dog_rates/status/669037058... 10 10 None floofer https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7590 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... NaN NaN NaN https://twitter.com/dog_rates/status/669037058... 10 10 None pupper https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7591 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... NaN NaN NaN https://twitter.com/dog_rates/status/669037058... 10 10 None puppo https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7593 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... NaN NaN NaN https://twitter.com/dog_rates/status/669015743... 10 10 None floofer https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7594 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... NaN NaN NaN https://twitter.com/dog_rates/status/669015743... 10 10 None pupper https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7595 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... NaN NaN NaN https://twitter.com/dog_rates/status/669015743... 10 10 None puppo https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7597 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... NaN NaN NaN https://twitter.com/dog_rates/status/669006782... 12 10 Tucker floofer https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7598 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... NaN NaN NaN https://twitter.com/dog_rates/status/669006782... 12 10 Tucker pupper https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7599 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... NaN NaN NaN https://twitter.com/dog_rates/status/669006782... 12 10 Tucker puppo https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7601 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... NaN NaN NaN https://twitter.com/dog_rates/status/669000397... 11 10 Terrance floofer https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7602 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... NaN NaN NaN https://twitter.com/dog_rates/status/669000397... 11 10 Terrance pupper https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7603 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... NaN NaN NaN https://twitter.com/dog_rates/status/669000397... 11 10 Terrance puppo https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7605 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... NaN NaN NaN https://twitter.com/dog_rates/status/668994913... 5 10 None floofer https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7606 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... NaN NaN NaN https://twitter.com/dog_rates/status/668994913... 5 10 None pupper https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7607 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... NaN NaN NaN https://twitter.com/dog_rates/status/668994913... 5 10 None puppo https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7609 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... NaN NaN NaN https://twitter.com/dog_rates/status/668992363... 8 10 Harrison floofer https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7610 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... NaN NaN NaN https://twitter.com/dog_rates/status/668992363... 8 10 Harrison pupper https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7611 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... NaN NaN NaN https://twitter.com/dog_rates/status/668992363... 8 10 Harrison puppo https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7613 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... NaN NaN NaN https://twitter.com/dog_rates/status/668989615... 3 10 Bernie floofer https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7614 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... NaN NaN NaN https://twitter.com/dog_rates/status/668989615... 3 10 Bernie pupper https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7615 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... NaN NaN NaN https://twitter.com/dog_rates/status/668989615... 3 10 Bernie puppo https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7617 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... NaN NaN NaN https://twitter.com/dog_rates/status/668988183... 7 10 None floofer https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7618 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... NaN NaN NaN https://twitter.com/dog_rates/status/668988183... 7 10 None pupper https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7619 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... NaN NaN NaN https://twitter.com/dog_rates/status/668988183... 7 10 None puppo https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7621 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... NaN NaN NaN https://twitter.com/dog_rates/status/668986018... 9 10 Ruby floofer https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7622 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... NaN NaN NaN https://twitter.com/dog_rates/status/668986018... 9 10 Ruby pupper https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7623 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... NaN NaN NaN https://twitter.com/dog_rates/status/668986018... 9 10 Ruby puppo https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7625 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... NaN NaN NaN https://twitter.com/dog_rates/status/668981893... 4 10 None floofer https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7626 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... NaN NaN NaN https://twitter.com/dog_rates/status/668981893... 4 10 None pupper https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7627 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... NaN NaN NaN https://twitter.com/dog_rates/status/668981893... 4 10 None puppo https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7629 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... NaN NaN NaN https://twitter.com/dog_rates/status/668979806... 12 10 Chaz floofer https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7630 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... NaN NaN NaN https://twitter.com/dog_rates/status/668979806... 12 10 Chaz pupper https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7631 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... NaN NaN NaN https://twitter.com/dog_rates/status/668979806... 12 10 Chaz puppo https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7633 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... NaN NaN NaN https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy floofer https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7634 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... NaN NaN NaN https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy pupper https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7635 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... NaN NaN NaN https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy puppo https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7637 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... NaN NaN NaN https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob floofer https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7638 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... NaN NaN NaN https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob pupper https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7639 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... NaN NaN NaN https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob puppo https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7641 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... NaN NaN NaN https://twitter.com/dog_rates/status/668955713... 10 10 a floofer https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7642 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... NaN NaN NaN https://twitter.com/dog_rates/status/668955713... 10 10 a pupper https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7643 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... NaN NaN NaN https://twitter.com/dog_rates/status/668955713... 10 10 a puppo https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7645 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... NaN NaN NaN https://twitter.com/dog_rates/status/668932921... 9 10 Herald floofer https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7646 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... NaN NaN NaN https://twitter.com/dog_rates/status/668932921... 9 10 Herald pupper https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7647 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... NaN NaN NaN https://twitter.com/dog_rates/status/668932921... 9 10 Herald puppo https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7649 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... NaN NaN NaN https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau floofer https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7650 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... NaN NaN NaN https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau pupper https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7651 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... NaN NaN NaN https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau puppo https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7653 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... NaN NaN NaN https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles floofer https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7654 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... NaN NaN NaN https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles pupper https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7655 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... NaN NaN NaN https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles puppo https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7657 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... NaN NaN NaN https://twitter.com/dog_rates/status/668872652... 11 10 Amélie floofer https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7658 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... NaN NaN NaN https://twitter.com/dog_rates/status/668872652... 11 10 Amélie pupper https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7659 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... NaN NaN NaN https://twitter.com/dog_rates/status/668872652... 11 10 Amélie puppo https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7661 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... NaN NaN NaN https://twitter.com/dog_rates/status/668852170... 11 10 Bobb floofer https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7662 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... NaN NaN NaN https://twitter.com/dog_rates/status/668852170... 11 10 Bobb pupper https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7663 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... NaN NaN NaN https://twitter.com/dog_rates/status/668852170... 11 10 Bobb puppo https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7665 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... NaN NaN NaN https://twitter.com/dog_rates/status/668826086... 10 10 Banditt floofer https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7666 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... NaN NaN NaN https://twitter.com/dog_rates/status/668826086... 10 10 Banditt pupper https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7667 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... NaN NaN NaN https://twitter.com/dog_rates/status/668826086... 10 10 Banditt puppo https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7669 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... NaN NaN NaN https://twitter.com/dog_rates/status/668815180... 7 10 a floofer https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7670 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... NaN NaN NaN https://twitter.com/dog_rates/status/668815180... 7 10 a pupper https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7671 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... NaN NaN NaN https://twitter.com/dog_rates/status/668815180... 7 10 a puppo https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7673 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... NaN NaN NaN https://twitter.com/dog_rates/status/668779399... 10 10 Kevon floofer https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7674 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... NaN NaN NaN https://twitter.com/dog_rates/status/668779399... 10 10 Kevon pupper https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7675 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... NaN NaN NaN https://twitter.com/dog_rates/status/668779399... 10 10 Kevon puppo https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7677 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... NaN NaN NaN https://twitter.com/dog_rates/status/668655139... 11 10 Winifred floofer https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7678 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... NaN NaN NaN https://twitter.com/dog_rates/status/668655139... 11 10 Winifred pupper https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7679 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... NaN NaN NaN https://twitter.com/dog_rates/status/668655139... 11 10 Winifred puppo https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7681 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... NaN NaN NaN https://twitter.com/dog_rates/status/668645506... 11 10 None floofer https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7682 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... NaN NaN NaN https://twitter.com/dog_rates/status/668645506... 11 10 None pupper https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7683 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... NaN NaN NaN https://twitter.com/dog_rates/status/668645506... 11 10 None puppo https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7685 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... NaN NaN NaN https://twitter.com/dog_rates/status/668643542... 3 10 None floofer https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7686 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... NaN NaN NaN https://twitter.com/dog_rates/status/668643542... 3 10 None pupper https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7687 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... NaN NaN NaN https://twitter.com/dog_rates/status/668643542... 3 10 None puppo https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7689 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668641109... 10 10 Hanz floofer https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7690 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668641109... 10 10 Hanz pupper https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7691 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668641109... 10 10 Hanz puppo https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7693 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... NaN NaN NaN https://twitter.com/dog_rates/status/668636665... 10 10 an floofer https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7694 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... NaN NaN NaN https://twitter.com/dog_rates/status/668636665... 10 10 an pupper https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7695 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... NaN NaN NaN https://twitter.com/dog_rates/status/668636665... 10 10 an puppo https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7697 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668633411... 10 10 Churlie floofer https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7698 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668633411... 10 10 Churlie pupper https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7699 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668633411... 10 10 Churlie puppo https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7701 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... NaN NaN NaN https://twitter.com/dog_rates/status/668631377... 5 10 Zeek floofer https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7702 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... NaN NaN NaN https://twitter.com/dog_rates/status/668631377... 5 10 Zeek pupper https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7703 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... NaN NaN NaN https://twitter.com/dog_rates/status/668631377... 5 10 Zeek puppo https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7705 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... NaN NaN NaN https://twitter.com/dog_rates/status/668627278... 9 10 Timofy floofer https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7706 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... NaN NaN NaN https://twitter.com/dog_rates/status/668627278... 9 10 Timofy pupper https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7707 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... NaN NaN NaN https://twitter.com/dog_rates/status/668627278... 9 10 Timofy puppo https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7709 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... NaN NaN NaN https://twitter.com/dog_rates/status/668625577... 10 10 Maks floofer https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7710 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... NaN NaN NaN https://twitter.com/dog_rates/status/668625577... 10 10 Maks pupper https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7711 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... NaN NaN NaN https://twitter.com/dog_rates/status/668625577... 10 10 Maks puppo https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7713 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... NaN NaN NaN https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan floofer https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7714 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... NaN NaN NaN https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan pupper https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7715 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... NaN NaN NaN https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan puppo https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7717 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... NaN NaN NaN https://twitter.com/dog_rates/status/668620235... 10 10 Kallie floofer https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7718 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... NaN NaN NaN https://twitter.com/dog_rates/status/668620235... 10 10 Kallie pupper https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7719 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... NaN NaN NaN https://twitter.com/dog_rates/status/668620235... 10 10 Kallie puppo https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7721 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... NaN NaN NaN https://twitter.com/dog_rates/status/668614819... 7 10 a floofer https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7722 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... NaN NaN NaN https://twitter.com/dog_rates/status/668614819... 7 10 a pupper https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7723 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... NaN NaN NaN https://twitter.com/dog_rates/status/668614819... 7 10 a puppo https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7725 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... NaN NaN NaN https://twitter.com/dog_rates/status/668567822... 11 10 Marvin floofer https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7726 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... NaN NaN NaN https://twitter.com/dog_rates/status/668567822... 11 10 Marvin pupper https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7727 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... NaN NaN NaN https://twitter.com/dog_rates/status/668567822... 11 10 Marvin puppo https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7729 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... NaN NaN NaN https://twitter.com/dog_rates/status/668544745... 10 10 None floofer https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7730 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... NaN NaN NaN https://twitter.com/dog_rates/status/668544745... 10 10 None pupper https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7731 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... NaN NaN NaN https://twitter.com/dog_rates/status/668544745... 10 10 None puppo https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7733 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... NaN NaN NaN https://twitter.com/dog_rates/status/668542336... 10 10 None floofer https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7734 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... NaN NaN NaN https://twitter.com/dog_rates/status/668542336... 10 10 None pupper https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7735 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... NaN NaN NaN https://twitter.com/dog_rates/status/668542336... 10 10 None puppo https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7737 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... NaN NaN NaN https://twitter.com/dog_rates/status/668537837... 8 10 Spark floofer https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7738 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... NaN NaN NaN https://twitter.com/dog_rates/status/668537837... 8 10 Spark pupper https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7739 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... NaN NaN NaN https://twitter.com/dog_rates/status/668537837... 8 10 Spark puppo https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7741 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... NaN NaN NaN https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón floofer https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7742 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... NaN NaN NaN https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón pupper https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7743 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... NaN NaN NaN https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón puppo https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7745 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... NaN NaN NaN https://twitter.com/dog_rates/status/668507509... 10 10 a floofer https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7746 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... NaN NaN NaN https://twitter.com/dog_rates/status/668507509... 10 10 a pupper https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7747 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... NaN NaN NaN https://twitter.com/dog_rates/status/668507509... 10 10 a puppo https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7749 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... NaN NaN NaN https://twitter.com/dog_rates/status/668496999... 8 10 Jo floofer https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7750 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... NaN NaN NaN https://twitter.com/dog_rates/status/668496999... 8 10 Jo pupper https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7751 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... NaN NaN NaN https://twitter.com/dog_rates/status/668496999... 8 10 Jo puppo https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7753 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... NaN NaN NaN https://twitter.com/dog_rates/status/668484198... 9 10 None floofer https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7754 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... NaN NaN NaN https://twitter.com/dog_rates/status/668484198... 9 10 None pupper https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7755 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... NaN NaN NaN https://twitter.com/dog_rates/status/668484198... 9 10 None puppo https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7757 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... NaN NaN NaN https://twitter.com/dog_rates/status/668480044... 11 10 DayZ floofer https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7758 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... NaN NaN NaN https://twitter.com/dog_rates/status/668480044... 11 10 DayZ pupper https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7759 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... NaN NaN NaN https://twitter.com/dog_rates/status/668480044... 11 10 DayZ puppo https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7761 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/668466899... 4 10 a floofer https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7762 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/668466899... 4 10 a pupper https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7763 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/668466899... 4 10 a puppo https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7765 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... NaN NaN NaN https://twitter.com/dog_rates/status/668297328... 9 10 None floofer https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7766 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... NaN NaN NaN https://twitter.com/dog_rates/status/668297328... 9 10 None pupper https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7767 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... NaN NaN NaN https://twitter.com/dog_rates/status/668297328... 9 10 None puppo https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7769 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/668291999... 10 10 None floofer https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7770 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/668291999... 10 10 None pupper https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7771 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/668291999... 10 10 None puppo https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7773 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... NaN NaN NaN https://twitter.com/dog_rates/status/668286279... 11 10 Rusty floofer https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7774 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... NaN NaN NaN https://twitter.com/dog_rates/status/668286279... 11 10 Rusty pupper https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7775 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... NaN NaN NaN https://twitter.com/dog_rates/status/668286279... 11 10 Rusty puppo https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7777 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... NaN NaN NaN https://twitter.com/dog_rates/status/668274247... 10 10 Sophie floofer https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7778 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... NaN NaN NaN https://twitter.com/dog_rates/status/668274247... 10 10 Sophie pupper https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7779 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... NaN NaN NaN https://twitter.com/dog_rates/status/668274247... 10 10 Sophie puppo https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7781 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... NaN NaN NaN https://twitter.com/dog_rates/status/668268907... 10 10 None floofer https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7782 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... NaN NaN NaN https://twitter.com/dog_rates/status/668268907... 10 10 None pupper https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7783 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... NaN NaN NaN https://twitter.com/dog_rates/status/668268907... 10 10 None puppo https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7785 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... NaN NaN NaN https://twitter.com/dog_rates/status/668256321... 13 10 Jareld floofer https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7786 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... NaN NaN NaN https://twitter.com/dog_rates/status/668256321... 13 10 Jareld pupper https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7787 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... NaN NaN NaN https://twitter.com/dog_rates/status/668256321... 13 10 Jareld puppo https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7789 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... NaN NaN NaN https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick floofer https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7790 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... NaN NaN NaN https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick pupper https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7791 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... NaN NaN NaN https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick puppo https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7793 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... NaN NaN NaN https://twitter.com/dog_rates/status/668237644... 10 10 Torque floofer https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7794 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... NaN NaN NaN https://twitter.com/dog_rates/status/668237644... 10 10 Torque pupper https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7795 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... NaN NaN NaN https://twitter.com/dog_rates/status/668237644... 10 10 Torque puppo https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7797 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/668226093... 10 10 None floofer https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7798 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/668226093... 10 10 None pupper https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7799 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/668226093... 10 10 None puppo https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7801 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... NaN NaN NaN https://twitter.com/dog_rates/status/668221241... 10 10 None floofer https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7802 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... NaN NaN NaN https://twitter.com/dog_rates/status/668221241... 10 10 None pupper https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7803 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... NaN NaN NaN https://twitter.com/dog_rates/status/668221241... 10 10 None puppo https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7805 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... NaN NaN NaN https://twitter.com/dog_rates/status/668204964... 8 10 Ron floofer https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7806 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... NaN NaN NaN https://twitter.com/dog_rates/status/668204964... 8 10 Ron pupper https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7807 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... NaN NaN NaN https://twitter.com/dog_rates/status/668204964... 8 10 Ron puppo https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7809 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... NaN NaN NaN https://twitter.com/dog_rates/status/668190681... 12 10 Skittles floofer https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7810 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... NaN NaN NaN https://twitter.com/dog_rates/status/668190681... 12 10 Skittles pupper https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7811 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... NaN NaN NaN https://twitter.com/dog_rates/status/668190681... 12 10 Skittles puppo https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7813 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... NaN NaN NaN https://twitter.com/dog_rates/status/668171859... 7 10 a floofer https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7814 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... NaN NaN NaN https://twitter.com/dog_rates/status/668171859... 7 10 a pupper https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7815 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... NaN NaN NaN https://twitter.com/dog_rates/status/668171859... 7 10 a puppo https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7817 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... NaN NaN NaN https://twitter.com/dog_rates/status/668154635... 9 10 None floofer https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7818 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... NaN NaN NaN https://twitter.com/dog_rates/status/668154635... 9 10 None pupper https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7819 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... NaN NaN NaN https://twitter.com/dog_rates/status/668154635... 9 10 None puppo https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7821 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... NaN NaN NaN https://twitter.com/dog_rates/status/668142349... 2 10 None floofer https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7822 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... NaN NaN NaN https://twitter.com/dog_rates/status/668142349... 2 10 None pupper https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7823 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... NaN NaN NaN https://twitter.com/dog_rates/status/668142349... 2 10 None puppo https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7825 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... NaN NaN NaN https://twitter.com/dog_rates/status/668113020... 6 10 Alfie floofer https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7826 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... NaN NaN NaN https://twitter.com/dog_rates/status/668113020... 6 10 Alfie pupper https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7827 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... NaN NaN NaN https://twitter.com/dog_rates/status/668113020... 6 10 Alfie puppo https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7829 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None floofer https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7830 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None pupper https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7831 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None puppo https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7833 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... NaN NaN NaN https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy floofer https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7834 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... NaN NaN NaN https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy pupper https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7835 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... NaN NaN NaN https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy puppo https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7837 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... NaN NaN NaN https://twitter.com/dog_rates/status/667915453... 10 10 Otis floofer https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7838 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... NaN NaN NaN https://twitter.com/dog_rates/status/667915453... 10 10 Otis pupper https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7839 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... NaN NaN NaN https://twitter.com/dog_rates/status/667915453... 10 10 Otis puppo https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7841 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... NaN NaN NaN https://twitter.com/dog_rates/status/667911425... 5 10 None floofer https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7842 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... NaN NaN NaN https://twitter.com/dog_rates/status/667911425... 5 10 None pupper https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7843 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... NaN NaN NaN https://twitter.com/dog_rates/status/667911425... 5 10 None puppo https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7845 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... NaN NaN NaN https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia floofer https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7846 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... NaN NaN NaN https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia pupper https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7847 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... NaN NaN NaN https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia puppo https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7849 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... NaN NaN NaN https://twitter.com/dog_rates/status/667886921... 11 10 Erik floofer https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7850 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... NaN NaN NaN https://twitter.com/dog_rates/status/667886921... 11 10 Erik pupper https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7851 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... NaN NaN NaN https://twitter.com/dog_rates/status/667886921... 11 10 Erik puppo https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7853 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... NaN NaN NaN https://twitter.com/dog_rates/status/667885044... 10 10 Stu floofer https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7854 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... NaN NaN NaN https://twitter.com/dog_rates/status/667885044... 10 10 Stu pupper https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7855 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... NaN NaN NaN https://twitter.com/dog_rates/status/667885044... 10 10 Stu puppo https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7857 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... NaN NaN NaN https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick floofer https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7858 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... NaN NaN NaN https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick pupper https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7859 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... NaN NaN NaN https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick puppo https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7861 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... NaN NaN NaN https://twitter.com/dog_rates/status/667873844... 10 10 None floofer https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7862 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... NaN NaN NaN https://twitter.com/dog_rates/status/667873844... 10 10 None pupper https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7863 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... NaN NaN NaN https://twitter.com/dog_rates/status/667873844... 10 10 None puppo https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7865 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... NaN NaN NaN https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy floofer https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7866 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... NaN NaN NaN https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy pupper https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7867 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... NaN NaN NaN https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy puppo https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7869 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... NaN NaN NaN https://twitter.com/dog_rates/status/667861340... 9 10 a floofer https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7870 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... NaN NaN NaN https://twitter.com/dog_rates/status/667861340... 9 10 a pupper https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7871 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... NaN NaN NaN https://twitter.com/dog_rates/status/667861340... 9 10 a puppo https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7873 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... NaN NaN NaN https://twitter.com/dog_rates/status/667832474... 12 10 None floofer https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7874 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... NaN NaN NaN https://twitter.com/dog_rates/status/667832474... 12 10 None pupper https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7875 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... NaN NaN NaN https://twitter.com/dog_rates/status/667832474... 12 10 None puppo https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7877 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... NaN NaN NaN https://twitter.com/dog_rates/status/667806454... 10 10 Filup floofer https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7878 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... NaN NaN NaN https://twitter.com/dog_rates/status/667806454... 10 10 Filup pupper https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7879 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... NaN NaN NaN https://twitter.com/dog_rates/status/667806454... 10 10 Filup puppo https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7881 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013... 12 10 None floofer https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7882 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013... 12 10 None pupper https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7883 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013... 12 10 None puppo https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7885 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... NaN NaN NaN https://twitter.com/dog_rates/status/667793409... 8 10 None floofer https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7886 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... NaN NaN NaN https://twitter.com/dog_rates/status/667793409... 8 10 None pupper https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7887 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... NaN NaN NaN https://twitter.com/dog_rates/status/667793409... 8 10 None puppo https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7889 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... NaN NaN NaN https://twitter.com/dog_rates/status/667782464... 9 10 None floofer https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7890 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... NaN NaN NaN https://twitter.com/dog_rates/status/667782464... 9 10 None pupper https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7891 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... NaN NaN NaN https://twitter.com/dog_rates/status/667782464... 9 10 None puppo https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7893 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... NaN NaN NaN https://twitter.com/dog_rates/status/667773195... 8 10 a floofer https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7894 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... NaN NaN NaN https://twitter.com/dog_rates/status/667773195... 8 10 a pupper https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7895 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... NaN NaN NaN https://twitter.com/dog_rates/status/667773195... 8 10 a puppo https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7897 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... NaN NaN NaN https://twitter.com/dog_rates/status/667766675... 9 10 Calvin floofer https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7898 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... NaN NaN NaN https://twitter.com/dog_rates/status/667766675... 9 10 Calvin pupper https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7899 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... NaN NaN NaN https://twitter.com/dog_rates/status/667766675... 9 10 Calvin puppo https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7901 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... NaN NaN NaN https://twitter.com/dog_rates/status/667728196... 11 10 Olive floofer https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7902 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... NaN NaN NaN https://twitter.com/dog_rates/status/667728196... 11 10 Olive pupper https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7903 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... NaN NaN NaN https://twitter.com/dog_rates/status/667728196... 11 10 Olive puppo https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7905 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... NaN NaN NaN https://twitter.com/dog_rates/status/667724302... 7 10 None floofer https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7906 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... NaN NaN NaN https://twitter.com/dog_rates/status/667724302... 7 10 None pupper https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7907 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... NaN NaN NaN https://twitter.com/dog_rates/status/667724302... 7 10 None puppo https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7909 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667... 12 10 None floofer https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7910 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667... 12 10 None pupper https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7911 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667... 12 10 None puppo https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7913 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667... 5 10 None floofer https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7914 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667... 5 10 None pupper https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7915 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667... 5 10 None puppo https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7917 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... NaN NaN NaN https://twitter.com/dog_rates/status/667549055... 1 10 None floofer https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7918 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... NaN NaN NaN https://twitter.com/dog_rates/status/667549055... 1 10 None pupper https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7919 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... NaN NaN NaN https://twitter.com/dog_rates/status/667549055... 1 10 None puppo https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7921 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/667546741... 9 10 George floofer https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7922 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/667546741... 9 10 George pupper https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7923 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/667546741... 9 10 George puppo https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7925 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... NaN NaN NaN https://twitter.com/dog_rates/status/667544320... 10 10 Kial floofer https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7926 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... NaN NaN NaN https://twitter.com/dog_rates/status/667544320... 10 10 Kial pupper https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7927 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... NaN NaN NaN https://twitter.com/dog_rates/status/667544320... 10 10 Kial puppo https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7929 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... NaN NaN NaN https://twitter.com/dog_rates/status/667538891... 9 10 a floofer https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7930 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... NaN NaN NaN https://twitter.com/dog_rates/status/667538891... 9 10 a pupper https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7931 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... NaN NaN NaN https://twitter.com/dog_rates/status/667538891... 9 10 a puppo https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7933 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... NaN NaN NaN https://twitter.com/dog_rates/status/667534815... 8 10 Frank floofer https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7934 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... NaN NaN NaN https://twitter.com/dog_rates/status/667534815... 8 10 Frank pupper https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7935 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... NaN NaN NaN https://twitter.com/dog_rates/status/667534815... 8 10 Frank puppo https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7937 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... NaN NaN NaN https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel floofer https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7938 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... NaN NaN NaN https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel pupper https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7939 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... NaN NaN NaN https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel puppo https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7941 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... NaN NaN NaN https://twitter.com/dog_rates/status/667524857... 12 10 None floofer https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7942 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... NaN NaN NaN https://twitter.com/dog_rates/status/667524857... 12 10 None pupper https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7943 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... NaN NaN NaN https://twitter.com/dog_rates/status/667524857... 12 10 None puppo https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7945 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... NaN NaN NaN https://twitter.com/dog_rates/status/667517642... 8 10 Dook floofer https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7946 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... NaN NaN NaN https://twitter.com/dog_rates/status/667517642... 8 10 Dook pupper https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7947 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... NaN NaN NaN https://twitter.com/dog_rates/status/667517642... 8 10 Dook puppo https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7949 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... NaN NaN NaN https://twitter.com/dog_rates/status/667509364... 12 10 None floofer https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7950 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... NaN NaN NaN https://twitter.com/dog_rates/status/667509364... 12 10 None pupper https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7951 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... NaN NaN NaN https://twitter.com/dog_rates/status/667509364... 12 10 None puppo https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7953 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... NaN NaN NaN https://twitter.com/dog_rates/status/667502640... 11 10 Hall floofer https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7954 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... NaN NaN NaN https://twitter.com/dog_rates/status/667502640... 11 10 Hall pupper https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7955 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... NaN NaN NaN https://twitter.com/dog_rates/status/667502640... 11 10 Hall puppo https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7957 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... NaN NaN NaN https://twitter.com/dog_rates/status/667495797... 9 10 Philippe floofer https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7958 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... NaN NaN NaN https://twitter.com/dog_rates/status/667495797... 9 10 Philippe pupper https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7959 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... NaN NaN NaN https://twitter.com/dog_rates/status/667495797... 9 10 Philippe puppo https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7961 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... NaN NaN NaN https://twitter.com/dog_rates/status/667491009... 7 10 None floofer https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7962 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... NaN NaN NaN https://twitter.com/dog_rates/status/667491009... 7 10 None pupper https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7963 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... NaN NaN NaN https://twitter.com/dog_rates/status/667491009... 7 10 None puppo https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7965 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... NaN NaN NaN https://twitter.com/dog_rates/status/667470559... 11 10 a floofer https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7966 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... NaN NaN NaN https://twitter.com/dog_rates/status/667470559... 11 10 a pupper https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7967 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... NaN NaN NaN https://twitter.com/dog_rates/status/667470559... 11 10 a puppo https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7969 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... NaN NaN NaN https://twitter.com/dog_rates/status/667455448... 7 10 Reese floofer https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7970 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... NaN NaN NaN https://twitter.com/dog_rates/status/667455448... 7 10 Reese pupper https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7971 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... NaN NaN NaN https://twitter.com/dog_rates/status/667455448... 7 10 Reese puppo https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7973 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... NaN NaN NaN https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake floofer https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7974 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... NaN NaN NaN https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake pupper https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7975 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... NaN NaN NaN https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake puppo https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7977 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... NaN NaN NaN https://twitter.com/dog_rates/status/667443425... 6 10 None floofer https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7978 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... NaN NaN NaN https://twitter.com/dog_rates/status/667443425... 6 10 None pupper https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7979 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... NaN NaN NaN https://twitter.com/dog_rates/status/667443425... 6 10 None puppo https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7981 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... NaN NaN NaN https://twitter.com/dog_rates/status/667437278... 10 10 None floofer https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7982 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... NaN NaN NaN https://twitter.com/dog_rates/status/667437278... 10 10 None pupper https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7983 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... NaN NaN NaN https://twitter.com/dog_rates/status/667437278... 10 10 None puppo https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7985 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689... 12 10 None floofer https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7986 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689... 12 10 None pupper https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7987 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689... 12 10 None puppo https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7989 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/667405339... 7 10 Biden floofer https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7990 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/667405339... 7 10 Biden pupper https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7991 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/667405339... 7 10 Biden puppo https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7993 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... NaN NaN NaN https://twitter.com/dog_rates/status/667393430... 8 10 Fwed floofer https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7994 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... NaN NaN NaN https://twitter.com/dog_rates/status/667393430... 8 10 Fwed pupper https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7995 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... NaN NaN NaN https://twitter.com/dog_rates/status/667393430... 8 10 Fwed puppo https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7997 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... NaN NaN NaN https://twitter.com/dog_rates/status/667369227... 10 10 None floofer https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
7998 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... NaN NaN NaN https://twitter.com/dog_rates/status/667369227... 10 10 None pupper https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
7999 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... NaN NaN NaN https://twitter.com/dog_rates/status/667369227... 10 10 None puppo https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
8001 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... NaN NaN NaN https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve floofer https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8002 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... NaN NaN NaN https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve pupper https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8003 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... NaN NaN NaN https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve puppo https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8005 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... NaN NaN NaN https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa floofer https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8006 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... NaN NaN NaN https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa pupper https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8007 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... NaN NaN NaN https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa puppo https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8009 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... NaN NaN NaN https://twitter.com/dog_rates/status/667192066... 12 10 None floofer https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8010 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... NaN NaN NaN https://twitter.com/dog_rates/status/667192066... 12 10 None pupper https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8011 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... NaN NaN NaN https://twitter.com/dog_rates/status/667192066... 12 10 None puppo https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8013 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... NaN NaN NaN https://twitter.com/dog_rates/status/667188689... 10 10 None floofer https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8014 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... NaN NaN NaN https://twitter.com/dog_rates/status/667188689... 10 10 None pupper https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8015 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... NaN NaN NaN https://twitter.com/dog_rates/status/667188689... 10 10 None puppo https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8017 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... 10 10 Timison floofer https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8018 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... 10 10 Timison pupper https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8019 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... 10 10 Timison puppo https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8021 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... NaN NaN NaN https://twitter.com/dog_rates/status/667177989... 8 10 a floofer https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8022 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... NaN NaN NaN https://twitter.com/dog_rates/status/667177989... 8 10 a pupper https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8023 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... NaN NaN NaN https://twitter.com/dog_rates/status/667177989... 8 10 a puppo https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8025 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... NaN NaN NaN https://twitter.com/dog_rates/status/667176164... 4 10 None floofer https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8026 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... NaN NaN NaN https://twitter.com/dog_rates/status/667176164... 4 10 None pupper https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8027 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... NaN NaN NaN https://twitter.com/dog_rates/status/667176164... 4 10 None puppo https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8029 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... NaN NaN NaN https://twitter.com/dog_rates/status/667174963... 9 10 Clarence floofer https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8030 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... NaN NaN NaN https://twitter.com/dog_rates/status/667174963... 9 10 Clarence pupper https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8031 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... NaN NaN NaN https://twitter.com/dog_rates/status/667174963... 9 10 Clarence puppo https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8033 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... NaN NaN NaN https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth floofer https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8034 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... NaN NaN NaN https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth pupper https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8035 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... NaN NaN NaN https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth puppo https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8037 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... NaN NaN NaN https://twitter.com/dog_rates/status/667165590... 10 10 Churlie floofer https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8038 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... NaN NaN NaN https://twitter.com/dog_rates/status/667165590... 10 10 Churlie pupper https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8039 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... NaN NaN NaN https://twitter.com/dog_rates/status/667165590... 10 10 Churlie puppo https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8041 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... NaN NaN NaN https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay floofer https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8042 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... NaN NaN NaN https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay pupper https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8043 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... NaN NaN NaN https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay puppo https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8045 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... NaN NaN NaN https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy floofer https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8046 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... NaN NaN NaN https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy pupper https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8047 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... NaN NaN NaN https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy puppo https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8049 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... NaN NaN NaN https://twitter.com/dog_rates/status/667138269... 10 10 None floofer https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8050 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... NaN NaN NaN https://twitter.com/dog_rates/status/667138269... 10 10 None pupper https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8051 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... NaN NaN NaN https://twitter.com/dog_rates/status/667138269... 10 10 None puppo https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8053 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... NaN NaN NaN https://twitter.com/dog_rates/status/667119796... 10 10 Gabe floofer https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8054 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... NaN NaN NaN https://twitter.com/dog_rates/status/667119796... 10 10 Gabe pupper https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8055 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... NaN NaN NaN https://twitter.com/dog_rates/status/667119796... 10 10 Gabe puppo https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8057 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... NaN NaN NaN https://twitter.com/dog_rates/status/667090893... 7 10 Clybe floofer https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8058 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... NaN NaN NaN https://twitter.com/dog_rates/status/667090893... 7 10 Clybe pupper https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8059 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... NaN NaN NaN https://twitter.com/dog_rates/status/667090893... 7 10 Clybe puppo https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8061 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... NaN NaN NaN https://twitter.com/dog_rates/status/667073648... 10 10 Dave floofer https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8062 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... NaN NaN NaN https://twitter.com/dog_rates/status/667073648... 10 10 Dave pupper https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8063 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... NaN NaN NaN https://twitter.com/dog_rates/status/667073648... 10 10 Dave puppo https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8065 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... NaN NaN NaN https://twitter.com/dog_rates/status/667065535... 8 10 None floofer https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8066 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... NaN NaN NaN https://twitter.com/dog_rates/status/667065535... 8 10 None pupper https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8067 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... NaN NaN NaN https://twitter.com/dog_rates/status/667065535... 8 10 None puppo https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8069 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... NaN NaN NaN https://twitter.com/dog_rates/status/667062181... 10 10 Keet floofer https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8070 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... NaN NaN NaN https://twitter.com/dog_rates/status/667062181... 10 10 Keet pupper https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8071 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... NaN NaN NaN https://twitter.com/dog_rates/status/667062181... 10 10 Keet puppo https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8073 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094... 12 10 None floofer https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8074 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094... 12 10 None pupper https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8075 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094... 12 10 None puppo https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8077 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... NaN NaN NaN https://twitter.com/dog_rates/status/667012601... 9 10 Klevin floofer https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8078 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... NaN NaN NaN https://twitter.com/dog_rates/status/667012601... 9 10 Klevin pupper https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8079 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... NaN NaN NaN https://twitter.com/dog_rates/status/667012601... 9 10 Klevin puppo https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8081 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... NaN NaN NaN https://twitter.com/dog_rates/status/666996132... 10 10 Carll floofer https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8082 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... NaN NaN NaN https://twitter.com/dog_rates/status/666996132... 10 10 Carll pupper https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8083 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... NaN NaN NaN https://twitter.com/dog_rates/status/666996132... 10 10 Carll puppo https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8085 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... NaN NaN NaN https://twitter.com/dog_rates/status/666983947... 11 10 a floofer https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8086 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... NaN NaN NaN https://twitter.com/dog_rates/status/666983947... 11 10 a pupper https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8087 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... NaN NaN NaN https://twitter.com/dog_rates/status/666983947... 11 10 a puppo https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8089 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... NaN NaN NaN https://twitter.com/dog_rates/status/666837028... 3 10 None floofer https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8090 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... NaN NaN NaN https://twitter.com/dog_rates/status/666837028... 3 10 None pupper https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8091 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... NaN NaN NaN https://twitter.com/dog_rates/status/666837028... 3 10 None puppo https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8093 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... NaN NaN NaN https://twitter.com/dog_rates/status/666835007... 10 10 None floofer https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8094 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... NaN NaN NaN https://twitter.com/dog_rates/status/666835007... 10 10 None pupper https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8095 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... NaN NaN NaN https://twitter.com/dog_rates/status/666835007... 10 10 None puppo https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8097 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... NaN NaN NaN https://twitter.com/dog_rates/status/666826780... 12 10 None floofer https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8098 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... NaN NaN NaN https://twitter.com/dog_rates/status/666826780... 12 10 None pupper https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8099 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... NaN NaN NaN https://twitter.com/dog_rates/status/666826780... 12 10 None puppo https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8101 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... NaN NaN NaN https://twitter.com/dog_rates/status/666817836... 9 10 Jeph floofer https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8102 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... NaN NaN NaN https://twitter.com/dog_rates/status/666817836... 9 10 Jeph pupper https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8103 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... NaN NaN NaN https://twitter.com/dog_rates/status/666817836... 9 10 Jeph puppo https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8105 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... NaN NaN NaN https://twitter.com/dog_rates/status/666804364... 8 10 Jockson floofer https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8106 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... NaN NaN NaN https://twitter.com/dog_rates/status/666804364... 8 10 Jockson pupper https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8107 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... NaN NaN NaN https://twitter.com/dog_rates/status/666804364... 8 10 Jockson puppo https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8109 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... NaN NaN NaN https://twitter.com/dog_rates/status/666786068... 2 10 None floofer https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8110 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... NaN NaN NaN https://twitter.com/dog_rates/status/666786068... 2 10 None pupper https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8111 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... NaN NaN NaN https://twitter.com/dog_rates/status/666786068... 2 10 None puppo https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8113 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/666781792... 10 10 a floofer https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8114 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/666781792... 10 10 a pupper https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8115 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/666781792... 10 10 a puppo https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8117 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666776908... 5 10 Josep floofer https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8118 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666776908... 5 10 Josep pupper https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8119 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666776908... 5 10 Josep puppo https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8121 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... NaN NaN NaN https://twitter.com/dog_rates/status/666739327... 10 10 Lugan floofer https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8122 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... NaN NaN NaN https://twitter.com/dog_rates/status/666739327... 10 10 Lugan pupper https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8123 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... NaN NaN NaN https://twitter.com/dog_rates/status/666739327... 10 10 Lugan puppo https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8125 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... NaN NaN NaN https://twitter.com/dog_rates/status/666701168... 8 10 a floofer https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8126 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... NaN NaN NaN https://twitter.com/dog_rates/status/666701168... 8 10 a pupper https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8127 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... NaN NaN NaN https://twitter.com/dog_rates/status/666701168... 8 10 a puppo https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8129 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... NaN NaN NaN https://twitter.com/dog_rates/status/666691418... 8 10 Christoper floofer https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8130 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... NaN NaN NaN https://twitter.com/dog_rates/status/666691418... 8 10 Christoper pupper https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8131 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... NaN NaN NaN https://twitter.com/dog_rates/status/666691418... 8 10 Christoper puppo https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8133 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/666649482... 4 10 None floofer https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8134 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/666649482... 4 10 None pupper https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8135 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/666649482... 4 10 None puppo https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8137 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy floofer https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8138 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy pupper https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8139 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy puppo https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8141 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... NaN NaN NaN https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory floofer https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8142 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... NaN NaN NaN https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory pupper https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8143 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... NaN NaN NaN https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory puppo https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8145 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... NaN NaN NaN https://twitter.com/dog_rates/status/666447344... 9 10 Scout floofer https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8146 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... NaN NaN NaN https://twitter.com/dog_rates/status/666447344... 9 10 Scout pupper https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8147 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... NaN NaN NaN https://twitter.com/dog_rates/status/666447344... 9 10 Scout puppo https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8149 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... NaN NaN NaN https://twitter.com/dog_rates/status/666437273... 7 10 None floofer https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8150 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... NaN NaN NaN https://twitter.com/dog_rates/status/666437273... 7 10 None pupper https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8151 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... NaN NaN NaN https://twitter.com/dog_rates/status/666437273... 7 10 None puppo https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8153 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... NaN NaN NaN https://twitter.com/dog_rates/status/666435652... 10 10 None floofer https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8154 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... NaN NaN NaN https://twitter.com/dog_rates/status/666435652... 10 10 None pupper https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8155 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... NaN NaN NaN https://twitter.com/dog_rates/status/666435652... 10 10 None puppo https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8157 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... NaN NaN NaN https://twitter.com/dog_rates/status/666430724... 6 10 None floofer https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8158 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... NaN NaN NaN https://twitter.com/dog_rates/status/666430724... 6 10 None pupper https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8159 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... NaN NaN NaN https://twitter.com/dog_rates/status/666430724... 6 10 None puppo https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8161 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... NaN NaN NaN https://twitter.com/dog_rates/status/666428276... 7 10 None floofer https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8162 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... NaN NaN NaN https://twitter.com/dog_rates/status/666428276... 7 10 None pupper https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8163 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... NaN NaN NaN https://twitter.com/dog_rates/status/666428276... 7 10 None puppo https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8165 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... NaN NaN NaN https://twitter.com/dog_rates/status/666421158... 12 10 None floofer https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8166 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... NaN NaN NaN https://twitter.com/dog_rates/status/666421158... 12 10 None pupper https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8167 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... NaN NaN NaN https://twitter.com/dog_rates/status/666421158... 12 10 None puppo https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8169 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/666418789... 10 10 Walter floofer https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8170 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/666418789... 10 10 Walter pupper https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8171 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/666418789... 10 10 Walter puppo https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8173 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... NaN NaN NaN https://twitter.com/dog_rates/status/666411507... 2 10 quite floofer https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8174 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... NaN NaN NaN https://twitter.com/dog_rates/status/666411507... 2 10 quite pupper https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8175 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... NaN NaN NaN https://twitter.com/dog_rates/status/666411507... 2 10 quite puppo https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8177 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... NaN NaN NaN https://twitter.com/dog_rates/status/666407126... 7 10 a floofer https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8178 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... NaN NaN NaN https://twitter.com/dog_rates/status/666407126... 7 10 a pupper https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8179 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... NaN NaN NaN https://twitter.com/dog_rates/status/666407126... 7 10 a puppo https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8181 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... NaN NaN NaN https://twitter.com/dog_rates/status/666396247... 9 10 None floofer https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8182 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... NaN NaN NaN https://twitter.com/dog_rates/status/666396247... 9 10 None pupper https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8183 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... NaN NaN NaN https://twitter.com/dog_rates/status/666396247... 9 10 None puppo https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8185 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/666373753... 11 10 None floofer https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8186 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/666373753... 11 10 None pupper https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8187 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/666373753... 11 10 None puppo https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8189 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... NaN NaN NaN https://twitter.com/dog_rates/status/666362758... 6 10 None floofer https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8190 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... NaN NaN NaN https://twitter.com/dog_rates/status/666362758... 6 10 None pupper https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8191 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... NaN NaN NaN https://twitter.com/dog_rates/status/666362758... 6 10 None puppo https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8193 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... NaN NaN NaN https://twitter.com/dog_rates/status/666353288... 8 10 None floofer https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8194 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... NaN NaN NaN https://twitter.com/dog_rates/status/666353288... 8 10 None pupper https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8195 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... NaN NaN NaN https://twitter.com/dog_rates/status/666353288... 8 10 None puppo https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8197 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... NaN NaN NaN https://twitter.com/dog_rates/status/666345417... 10 10 None floofer https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8198 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... NaN NaN NaN https://twitter.com/dog_rates/status/666345417... 10 10 None pupper https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8199 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... NaN NaN NaN https://twitter.com/dog_rates/status/666345417... 10 10 None puppo https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8201 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... NaN NaN NaN https://twitter.com/dog_rates/status/666337882... 9 10 an floofer https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8202 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... NaN NaN NaN https://twitter.com/dog_rates/status/666337882... 9 10 an pupper https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8203 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... NaN NaN NaN https://twitter.com/dog_rates/status/666337882... 9 10 an puppo https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8205 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... NaN NaN NaN https://twitter.com/dog_rates/status/666293911... 3 10 a floofer https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8206 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... NaN NaN NaN https://twitter.com/dog_rates/status/666293911... 3 10 a pupper https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8207 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... NaN NaN NaN https://twitter.com/dog_rates/status/666293911... 3 10 a puppo https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8209 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... NaN NaN NaN https://twitter.com/dog_rates/status/666287406... 1 2 an floofer https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8210 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... NaN NaN NaN https://twitter.com/dog_rates/status/666287406... 1 2 an pupper https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8211 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... NaN NaN NaN https://twitter.com/dog_rates/status/666287406... 1 2 an puppo https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8213 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097... 11 10 None floofer https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8214 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097... 11 10 None pupper https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8215 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097... 11 10 None puppo https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8217 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... NaN NaN NaN https://twitter.com/dog_rates/status/666268910... 10 10 None floofer https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8218 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... NaN NaN NaN https://twitter.com/dog_rates/status/666268910... 10 10 None pupper https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8219 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... NaN NaN NaN https://twitter.com/dog_rates/status/666268910... 10 10 None puppo https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8221 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... NaN NaN NaN https://twitter.com/dog_rates/status/666104133... 1 10 None floofer https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8222 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... NaN NaN NaN https://twitter.com/dog_rates/status/666104133... 1 10 None pupper https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8223 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... NaN NaN NaN https://twitter.com/dog_rates/status/666104133... 1 10 None puppo https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8225 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... NaN NaN NaN https://twitter.com/dog_rates/status/666102155... 11 10 None floofer https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8226 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... NaN NaN NaN https://twitter.com/dog_rates/status/666102155... 11 10 None pupper https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8227 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... NaN NaN NaN https://twitter.com/dog_rates/status/666102155... 11 10 None puppo https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8229 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... NaN NaN NaN https://twitter.com/dog_rates/status/666099513... 8 10 None floofer https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8230 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... NaN NaN NaN https://twitter.com/dog_rates/status/666099513... 8 10 None pupper https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8231 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... NaN NaN NaN https://twitter.com/dog_rates/status/666099513... 8 10 None puppo https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8233 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... NaN NaN NaN https://twitter.com/dog_rates/status/666094000... 9 10 None floofer https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8234 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... NaN NaN NaN https://twitter.com/dog_rates/status/666094000... 9 10 None pupper https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8235 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... NaN NaN NaN https://twitter.com/dog_rates/status/666094000... 9 10 None puppo https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8237 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... NaN NaN NaN https://twitter.com/dog_rates/status/666082916... 6 10 None floofer https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8238 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... NaN NaN NaN https://twitter.com/dog_rates/status/666082916... 6 10 None pupper https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8239 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... NaN NaN NaN https://twitter.com/dog_rates/status/666082916... 6 10 None puppo https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8241 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... NaN NaN NaN https://twitter.com/dog_rates/status/666073100... 10 10 None floofer https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8242 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... NaN NaN NaN https://twitter.com/dog_rates/status/666073100... 10 10 None pupper https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8243 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... NaN NaN NaN https://twitter.com/dog_rates/status/666073100... 10 10 None puppo https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8245 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... NaN NaN NaN https://twitter.com/dog_rates/status/666071193... 9 10 None floofer https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8246 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... NaN NaN NaN https://twitter.com/dog_rates/status/666071193... 9 10 None pupper https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8247 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... NaN NaN NaN https://twitter.com/dog_rates/status/666071193... 9 10 None puppo https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8249 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/666063827... 10 10 the floofer https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8250 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/666063827... 10 10 the pupper https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8251 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/666063827... 10 10 the puppo https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8253 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... NaN NaN NaN https://twitter.com/dog_rates/status/666058600... 8 10 the floofer https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8254 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... NaN NaN NaN https://twitter.com/dog_rates/status/666058600... 8 10 the pupper https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8255 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... NaN NaN NaN https://twitter.com/dog_rates/status/666058600... 8 10 the puppo https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8257 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... NaN NaN NaN https://twitter.com/dog_rates/status/666057090... 9 10 a floofer https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8258 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... NaN NaN NaN https://twitter.com/dog_rates/status/666057090... 9 10 a pupper https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8259 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... NaN NaN NaN https://twitter.com/dog_rates/status/666057090... 9 10 a puppo https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8261 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... NaN NaN NaN https://twitter.com/dog_rates/status/666055525... 10 10 a floofer https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8262 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... NaN NaN NaN https://twitter.com/dog_rates/status/666055525... 10 10 a pupper https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8263 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... NaN NaN NaN https://twitter.com/dog_rates/status/666055525... 10 10 a puppo https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8265 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... NaN NaN NaN https://twitter.com/dog_rates/status/666051853... 2 10 an floofer https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8266 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... NaN NaN NaN https://twitter.com/dog_rates/status/666051853... 2 10 an pupper https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8267 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... NaN NaN NaN https://twitter.com/dog_rates/status/666051853... 2 10 an puppo https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8269 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... NaN NaN NaN https://twitter.com/dog_rates/status/666050758... 10 10 a floofer https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8270 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... NaN NaN NaN https://twitter.com/dog_rates/status/666050758... 10 10 a pupper https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8271 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... NaN NaN NaN https://twitter.com/dog_rates/status/666050758... 10 10 a puppo https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8273 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None floofer https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8274 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None pupper https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8275 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None puppo https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8277 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a floofer https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8278 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a pupper https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8279 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a puppo https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8281 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a floofer https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8282 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a pupper https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8283 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a puppo https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8285 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a floofer https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8286 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a pupper https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8287 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a puppo https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8289 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None floofer https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535
8290 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None pupper https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535
8291 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None puppo https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535

6219 rows × 27 columns

Missing data

Define

drop columns with NANs

Code

In [47]:
main_df.isnull().sum()
Out[47]:
tweet_id                         0
in_reply_to_status_id         8200
in_reply_to_user_id           8200
timestamp                        0
source                           0
text                             0
retweeted_status_id           7976
retweeted_status_user_id      7976
retweeted_status_timestamp    7976
expanded_urls                    0
rating_numerator                 0
rating_denominator               0
name                             0
dog_stage                        0
jpg_url                          0
img_num                          0
p1                               0
p1_conf                          0
p1_dog                           0
p2                               0
p2_conf                          0
p2_dog                           0
p3                               0
p3_conf                          0
p3_dog                           0
retweet_count                    0
favorite_count                   0
dtype: int64
In [48]:
col_drop = ['retweeted_status_id','retweeted_status_user_id','retweeted_status_timestamp',
            'in_reply_to_status_id','in_reply_to_user_id']
main_df.drop(columns=col_drop,inplace=True,axis=1)
In [49]:
main_df
Out[49]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
1 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
2 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
3 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False 8853 39467
4 892177421306343426 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
5 892177421306343426 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly floofer https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
6 892177421306343426 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly pupper https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
7 892177421306343426 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly puppo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True 6514 33819
8 891815181378084864 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie doggo https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
9 891815181378084864 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie floofer https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
10 891815181378084864 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie pupper https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
11 891815181378084864 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie puppo https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True 4328 25461
12 891689557279858688 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla doggo https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
13 891689557279858688 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla floofer https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
14 891689557279858688 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla pupper https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
15 891689557279858688 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla puppo https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False 8964 42908
16 891327558926688256 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin doggo https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
17 891327558926688256 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin floofer https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
18 891327558926688256 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin pupper https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
19 891327558926688256 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin puppo https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True 9774 41048
20 891087950875897856 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... https://twitter.com/dog_rates/status/891087950... 13 10 None doggo https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
21 891087950875897856 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... https://twitter.com/dog_rates/status/891087950... 13 10 None floofer https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
22 891087950875897856 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... https://twitter.com/dog_rates/status/891087950... 13 10 None pupper https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
23 891087950875897856 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... https://twitter.com/dog_rates/status/891087950... 13 10 None puppo https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False 3261 20562
24 890971913173991426 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax doggo https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
25 890971913173991426 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax floofer https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
26 890971913173991426 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax pupper https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
27 890971913173991426 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax puppo https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False 2158 12041
28 890729181411237888 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... https://twitter.com/dog_rates/status/890729181... 13 10 None doggo https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
29 890729181411237888 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... https://twitter.com/dog_rates/status/890729181... 13 10 None floofer https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
30 890729181411237888 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... https://twitter.com/dog_rates/status/890729181... 13 10 None pupper https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
31 890729181411237888 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... https://twitter.com/dog_rates/status/890729181... 13 10 None puppo https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True 16716 56848
32 890609185150312448 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... https://twitter.com/dog_rates/status/890609185... 13 10 Zoey doggo https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
33 890609185150312448 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... https://twitter.com/dog_rates/status/890609185... 13 10 Zoey floofer https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
34 890609185150312448 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... https://twitter.com/dog_rates/status/890609185... 13 10 Zoey pupper https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
35 890609185150312448 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... https://twitter.com/dog_rates/status/890609185... 13 10 Zoey puppo https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True 4429 28226
36 890240255349198849 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... https://twitter.com/dog_rates/status/890240255... 14 10 Cassie doggo https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
37 890240255349198849 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... https://twitter.com/dog_rates/status/890240255... 14 10 Cassie floofer https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
38 890240255349198849 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... https://twitter.com/dog_rates/status/890240255... 14 10 Cassie pupper https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
39 890240255349198849 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... https://twitter.com/dog_rates/status/890240255... 14 10 Cassie puppo https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True 7711 32467
40 890006608113172480 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... https://twitter.com/dog_rates/status/890006608... 13 10 Koda doggo https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
41 890006608113172480 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... https://twitter.com/dog_rates/status/890006608... 13 10 Koda floofer https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
42 890006608113172480 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... https://twitter.com/dog_rates/status/890006608... 13 10 Koda pupper https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
43 890006608113172480 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... https://twitter.com/dog_rates/status/890006608... 13 10 Koda puppo https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True 7624 31166
44 889880896479866881 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... https://twitter.com/dog_rates/status/889880896... 13 10 Bruno doggo https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
45 889880896479866881 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... https://twitter.com/dog_rates/status/889880896... 13 10 Bruno floofer https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
46 889880896479866881 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... https://twitter.com/dog_rates/status/889880896... 13 10 Bruno pupper https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
47 889880896479866881 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... https://twitter.com/dog_rates/status/889880896... 13 10 Bruno puppo https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False 5156 28268
48 889665388333682689 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... https://twitter.com/dog_rates/status/889665388... 13 10 None doggo https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
49 889665388333682689 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... https://twitter.com/dog_rates/status/889665388... 13 10 None floofer https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
50 889665388333682689 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... https://twitter.com/dog_rates/status/889665388... 13 10 None pupper https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
51 889665388333682689 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... https://twitter.com/dog_rates/status/889665388... 13 10 None puppo https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True 8538 38818
52 889638837579907072 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... https://twitter.com/dog_rates/status/889638837... 12 10 Ted doggo https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
53 889638837579907072 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... https://twitter.com/dog_rates/status/889638837... 12 10 Ted floofer https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
54 889638837579907072 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... https://twitter.com/dog_rates/status/889638837... 12 10 Ted pupper https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
55 889638837579907072 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... https://twitter.com/dog_rates/status/889638837... 12 10 Ted puppo https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True 4735 27672
56 889531135344209921 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... https://twitter.com/dog_rates/status/889531135... 13 10 Stuart doggo https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
57 889531135344209921 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... https://twitter.com/dog_rates/status/889531135... 13 10 Stuart floofer https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
58 889531135344209921 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... https://twitter.com/dog_rates/status/889531135... 13 10 Stuart pupper https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
59 889531135344209921 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... https://twitter.com/dog_rates/status/889531135... 13 10 Stuart puppo https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True 2321 15359
60 889278841981685760 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... https://twitter.com/dog_rates/status/889278841... 13 10 Oliver doggo https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
61 889278841981685760 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... https://twitter.com/dog_rates/status/889278841... 13 10 Oliver floofer https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
62 889278841981685760 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... https://twitter.com/dog_rates/status/889278841... 13 10 Oliver pupper https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
63 889278841981685760 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... https://twitter.com/dog_rates/status/889278841... 13 10 Oliver puppo https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True 5637 25652
64 888917238123831296 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... https://twitter.com/dog_rates/status/888917238... 12 10 Jim doggo https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
65 888917238123831296 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... https://twitter.com/dog_rates/status/888917238... 12 10 Jim floofer https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
66 888917238123831296 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... https://twitter.com/dog_rates/status/888917238... 12 10 Jim pupper https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
67 888917238123831296 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... https://twitter.com/dog_rates/status/888917238... 12 10 Jim puppo https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True 4709 29611
68 888804989199671297 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... https://twitter.com/dog_rates/status/888804989... 13 10 Zeke doggo https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
69 888804989199671297 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... https://twitter.com/dog_rates/status/888804989... 13 10 Zeke floofer https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
70 888804989199671297 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... https://twitter.com/dog_rates/status/888804989... 13 10 Zeke pupper https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
71 888804989199671297 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... https://twitter.com/dog_rates/status/888804989... 13 10 Zeke puppo https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True 4559 26080
72 888554962724278272 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus doggo https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
73 888554962724278272 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus floofer https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
74 888554962724278272 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus pupper https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
75 888554962724278272 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus puppo https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True 3732 20290
76 888078434458587136 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... https://twitter.com/dog_rates/status/888078434... 12 10 Gerald doggo https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
77 888078434458587136 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... https://twitter.com/dog_rates/status/888078434... 12 10 Gerald floofer https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
78 888078434458587136 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... https://twitter.com/dog_rates/status/888078434... 12 10 Gerald pupper https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
79 888078434458587136 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... https://twitter.com/dog_rates/status/888078434... 12 10 Gerald puppo https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True 3653 22201
80 887705289381826560 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey doggo https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
81 887705289381826560 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey floofer https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
82 887705289381826560 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey pupper https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
83 887705289381826560 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey puppo https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True 5609 30779
84 887517139158093824 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... https://twitter.com/dog_rates/status/887517139... 14 10 such doggo https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
85 887517139158093824 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... https://twitter.com/dog_rates/status/887517139... 14 10 such floofer https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
86 887517139158093824 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... https://twitter.com/dog_rates/status/887517139... 14 10 such pupper https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
87 887517139158093824 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... https://twitter.com/dog_rates/status/887517139... 14 10 such puppo https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False 12082 46959
88 887473957103951883 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... https://twitter.com/dog_rates/status/887473957... 13 10 Canela doggo https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
89 887473957103951883 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... https://twitter.com/dog_rates/status/887473957... 13 10 Canela floofer https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
90 887473957103951883 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... https://twitter.com/dog_rates/status/887473957... 13 10 Canela pupper https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
91 887473957103951883 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... https://twitter.com/dog_rates/status/887473957... 13 10 Canela puppo https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True 18781 69871
92 887343217045368832 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... https://twitter.com/dog_rates/status/887343217... 13 10 None doggo https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
93 887343217045368832 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... https://twitter.com/dog_rates/status/887343217... 13 10 None floofer https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
94 887343217045368832 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... https://twitter.com/dog_rates/status/887343217... 13 10 None pupper https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
95 887343217045368832 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... https://twitter.com/dog_rates/status/887343217... 13 10 None puppo https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True 10737 34222
96 887101392804085760 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... https://twitter.com/dog_rates/status/887101392... 12 10 None doggo https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
97 887101392804085760 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... https://twitter.com/dog_rates/status/887101392... 12 10 None floofer https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
98 887101392804085760 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... https://twitter.com/dog_rates/status/887101392... 12 10 None pupper https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
99 887101392804085760 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... https://twitter.com/dog_rates/status/887101392... 12 10 None puppo https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True 6167 31061
100 886983233522544640 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... https://twitter.com/dog_rates/status/886983233... 13 10 Maya doggo https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
101 886983233522544640 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... https://twitter.com/dog_rates/status/886983233... 13 10 Maya floofer https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
102 886983233522544640 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... https://twitter.com/dog_rates/status/886983233... 13 10 Maya pupper https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
103 886983233522544640 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... https://twitter.com/dog_rates/status/886983233... 13 10 Maya puppo https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False 8084 35859
104 886736880519319552 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus doggo https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
105 886736880519319552 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus floofer https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
106 886736880519319552 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus pupper https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
107 886736880519319552 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus puppo https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True 3443 12306
108 886680336477933568 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... https://twitter.com/dog_rates/status/886680336... 13 10 Derek doggo https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
109 886680336477933568 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... https://twitter.com/dog_rates/status/886680336... 13 10 Derek floofer https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
110 886680336477933568 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... https://twitter.com/dog_rates/status/886680336... 13 10 Derek pupper https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
111 886680336477933568 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... https://twitter.com/dog_rates/status/886680336... 13 10 Derek puppo https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False 4610 22798
112 886366144734445568 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe doggo https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
113 886366144734445568 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe floofer https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
114 886366144734445568 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe pupper https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
115 886366144734445568 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe puppo https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True 3316 21524
116 886258384151887873 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... https://twitter.com/dog_rates/status/886258384... 13 10 Waffles doggo https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
117 886258384151887873 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... https://twitter.com/dog_rates/status/886258384... 13 10 Waffles floofer https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
118 886258384151887873 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... https://twitter.com/dog_rates/status/886258384... 13 10 Waffles pupper https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
119 886258384151887873 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... https://twitter.com/dog_rates/status/886258384... 13 10 Waffles puppo https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False 6523 28469
120 885984800019947520 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo doggo https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
121 885984800019947520 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo floofer https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
122 885984800019947520 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo pupper https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
123 885984800019947520 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo puppo https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True 7097 33382
124 885528943205470208 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... https://twitter.com/dog_rates/status/885528943... 13 10 Maisey doggo https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
125 885528943205470208 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... https://twitter.com/dog_rates/status/885528943... 13 10 Maisey floofer https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
126 885528943205470208 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... https://twitter.com/dog_rates/status/885528943... 13 10 Maisey pupper https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
127 885528943205470208 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... https://twitter.com/dog_rates/status/885528943... 13 10 Maisey puppo https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True 6683 36689
128 885311592912609280 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... https://twitter.com/dog_rates/status/830583320... 13 10 Lilly doggo https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
129 885311592912609280 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... https://twitter.com/dog_rates/status/830583320... 13 10 Lilly floofer https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
130 885311592912609280 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... https://twitter.com/dog_rates/status/830583320... 13 10 Lilly pupper https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
131 885311592912609280 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... https://twitter.com/dog_rates/status/830583320... 13 10 Lilly puppo https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True 19297 0
132 885167619883638784 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... https://twitter.com/dog_rates/status/885167619... 13 10 None doggo https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
133 885167619883638784 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... https://twitter.com/dog_rates/status/885167619... 13 10 None floofer https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
134 885167619883638784 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... https://twitter.com/dog_rates/status/885167619... 13 10 None pupper https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
135 885167619883638784 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... https://twitter.com/dog_rates/status/885167619... 13 10 None puppo https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True 4556 22367
136 884925521741709313 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... https://twitter.com/dog_rates/status/884925521... 12 10 Earl doggo https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
137 884925521741709313 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... https://twitter.com/dog_rates/status/884925521... 12 10 Earl floofer https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
138 884925521741709313 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... https://twitter.com/dog_rates/status/884925521... 12 10 Earl pupper https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
139 884925521741709313 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... https://twitter.com/dog_rates/status/884925521... 12 10 Earl puppo https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True 16439 68152
140 884876753390489601 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... https://twitter.com/dog_rates/status/884876753... 13 10 Lola doggo https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
141 884876753390489601 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... https://twitter.com/dog_rates/status/884876753... 13 10 Lola floofer https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
142 884876753390489601 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... https://twitter.com/dog_rates/status/884876753... 13 10 Lola pupper https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
143 884876753390489601 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... https://twitter.com/dog_rates/status/884876753... 13 10 Lola puppo https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True 6096 28514
144 884562892145688576 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... https://twitter.com/dog_rates/status/884562892... 13 10 Kevin doggo https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
145 884562892145688576 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... https://twitter.com/dog_rates/status/884562892... 13 10 Kevin floofer https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
146 884562892145688576 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... https://twitter.com/dog_rates/status/884562892... 13 10 Kevin pupper https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
147 884562892145688576 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... https://twitter.com/dog_rates/status/884562892... 13 10 Kevin puppo https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True 5100 24765
148 884441805382717440 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... https://twitter.com/dog_rates/status/884441805... 14 10 None doggo https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
149 884441805382717440 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... https://twitter.com/dog_rates/status/884441805... 14 10 None floofer https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
150 884441805382717440 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... https://twitter.com/dog_rates/status/884441805... 14 10 None pupper https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
151 884441805382717440 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... https://twitter.com/dog_rates/status/884441805... 14 10 None puppo https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True 5856 27478
152 884162670584377345 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... https://twitter.com/dog_rates/status/884162670... 12 10 Yogi doggo https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
153 884162670584377345 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... https://twitter.com/dog_rates/status/884162670... 12 10 Yogi floofer https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
154 884162670584377345 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... https://twitter.com/dog_rates/status/884162670... 12 10 Yogi pupper https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
155 884162670584377345 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... https://twitter.com/dog_rates/status/884162670... 12 10 Yogi puppo https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True 3128 20771
156 883838122936631299 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... https://twitter.com/dog_rates/status/883838122... 12 10 Noah doggo https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
157 883838122936631299 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... https://twitter.com/dog_rates/status/883838122... 12 10 Noah floofer https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
158 883838122936631299 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... https://twitter.com/dog_rates/status/883838122... 12 10 Noah pupper https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
159 883838122936631299 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... https://twitter.com/dog_rates/status/883838122... 12 10 Noah puppo https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True 3586 22349
160 883482846933004288 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... https://twitter.com/dog_rates/status/883482846... 5 10 Bella doggo https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
161 883482846933004288 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... https://twitter.com/dog_rates/status/883482846... 5 10 Bella floofer https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
162 883482846933004288 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... https://twitter.com/dog_rates/status/883482846... 5 10 Bella pupper https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
163 883482846933004288 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... https://twitter.com/dog_rates/status/883482846... 5 10 Bella puppo https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True 10407 46860
164 883360690899218434 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald doggo https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
165 883360690899218434 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald floofer https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
166 883360690899218434 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald pupper https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
167 883360690899218434 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald puppo https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True 3825 22986
168 883117836046086144 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... https://twitter.com/dog_rates/status/883117836... 13 10 None doggo https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
169 883117836046086144 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... https://twitter.com/dog_rates/status/883117836... 13 10 None floofer https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
170 883117836046086144 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... https://twitter.com/dog_rates/status/883117836... 13 10 None pupper https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
171 883117836046086144 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... https://twitter.com/dog_rates/status/883117836... 13 10 None puppo https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True 6949 37914
172 882992080364220416 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... https://twitter.com/dog_rates/status/882992080... 13 10 Rusty doggo https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
173 882992080364220416 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... https://twitter.com/dog_rates/status/882992080... 13 10 Rusty floofer https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
174 882992080364220416 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... https://twitter.com/dog_rates/status/882992080... 13 10 Rusty pupper https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
175 882992080364220416 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... https://twitter.com/dog_rates/status/882992080... 13 10 Rusty puppo https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False 4122 24445
176 882762694511734784 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... https://twitter.com/dog_rates/status/882762694... 12 10 Gus doggo https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
177 882762694511734784 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... https://twitter.com/dog_rates/status/882762694... 12 10 Gus floofer https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
178 882762694511734784 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... https://twitter.com/dog_rates/status/882762694... 12 10 Gus pupper https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
179 882762694511734784 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... https://twitter.com/dog_rates/status/882762694... 12 10 Gus puppo https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True 5134 28903
180 882627270321602560 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... https://twitter.com/dog_rates/status/882627270... 13 10 Stanley doggo https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
181 882627270321602560 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... https://twitter.com/dog_rates/status/882627270... 13 10 Stanley floofer https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
182 882627270321602560 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... https://twitter.com/dog_rates/status/882627270... 13 10 Stanley pupper https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
183 882627270321602560 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... https://twitter.com/dog_rates/status/882627270... 13 10 Stanley puppo https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True 6342 28382
184 882268110199369728 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... https://twitter.com/dog_rates/status/882268110... 13 10 Alfy doggo https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
185 882268110199369728 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... https://twitter.com/dog_rates/status/882268110... 13 10 Alfy floofer https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
186 882268110199369728 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... https://twitter.com/dog_rates/status/882268110... 13 10 Alfy pupper https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
187 882268110199369728 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... https://twitter.com/dog_rates/status/882268110... 13 10 Alfy puppo https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True 12118 45880
188 882045870035918850 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... https://twitter.com/dog_rates/status/882045870... 13 10 Koko doggo https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
189 882045870035918850 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... https://twitter.com/dog_rates/status/882045870... 13 10 Koko floofer https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
190 882045870035918850 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... https://twitter.com/dog_rates/status/882045870... 13 10 Koko pupper https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
191 882045870035918850 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... https://twitter.com/dog_rates/status/882045870... 13 10 Koko puppo https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True 5203 29900
192 881906580714921986 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... https://twitter.com/dog_rates/status/881906580... 12 10 Rey doggo https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
193 881906580714921986 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... https://twitter.com/dog_rates/status/881906580... 12 10 Rey floofer https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
194 881906580714921986 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... https://twitter.com/dog_rates/status/881906580... 12 10 Rey pupper https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
195 881906580714921986 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... https://twitter.com/dog_rates/status/881906580... 12 10 Rey puppo https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False 3533 24773
196 881666595344535552 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... https://twitter.com/dog_rates/status/881666595... 13 10 Gary doggo https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
197 881666595344535552 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... https://twitter.com/dog_rates/status/881666595... 13 10 Gary floofer https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
198 881666595344535552 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... https://twitter.com/dog_rates/status/881666595... 13 10 Gary pupper https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
199 881666595344535552 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... https://twitter.com/dog_rates/status/881666595... 13 10 Gary puppo https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True 11099 51522
200 881536004380872706 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... https://twitter.com/dog_rates/status/881536004... 14 10 a doggo https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
201 881536004380872706 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... https://twitter.com/dog_rates/status/881536004... 14 10 a floofer https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
202 881536004380872706 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... https://twitter.com/dog_rates/status/881536004... 14 10 a pupper https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
203 881536004380872706 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... https://twitter.com/dog_rates/status/881536004... 14 10 a puppo https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False 16570 50199
204 881268444196462592 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... https://twitter.com/dog_rates/status/881268444... 12 10 Elliot doggo https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
205 881268444196462592 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... https://twitter.com/dog_rates/status/881268444... 12 10 Elliot floofer https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
206 881268444196462592 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... https://twitter.com/dog_rates/status/881268444... 12 10 Elliot pupper https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
207 881268444196462592 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... https://twitter.com/dog_rates/status/881268444... 12 10 Elliot puppo https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False 5358 23501
208 880935762899988482 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... https://twitter.com/dog_rates/status/880935762... 13 10 Louis doggo https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
209 880935762899988482 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... https://twitter.com/dog_rates/status/880935762... 13 10 Louis floofer https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
210 880935762899988482 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... https://twitter.com/dog_rates/status/880935762... 13 10 Louis pupper https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
211 880935762899988482 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... https://twitter.com/dog_rates/status/880935762... 13 10 Louis puppo https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False 2886 17346
212 880872448815771648 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... https://twitter.com/dog_rates/status/880872448... 12 10 None doggo https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
213 880872448815771648 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... https://twitter.com/dog_rates/status/880872448... 12 10 None floofer https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
214 880872448815771648 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... https://twitter.com/dog_rates/status/880872448... 12 10 None pupper https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
215 880872448815771648 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... https://twitter.com/dog_rates/status/880872448... 12 10 None puppo https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True 3989 21734
216 880465832366813184 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... https://twitter.com/dog_rates/status/880465832... 12 10 Bella doggo https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
217 880465832366813184 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... https://twitter.com/dog_rates/status/880465832... 12 10 Bella floofer https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
218 880465832366813184 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... https://twitter.com/dog_rates/status/880465832... 12 10 Bella pupper https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
219 880465832366813184 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... https://twitter.com/dog_rates/status/880465832... 12 10 Bella puppo https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True 6546 29075
220 880221127280381952 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... https://twitter.com/dog_rates/status/880221127... 12 10 Jesse doggo https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
221 880221127280381952 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... https://twitter.com/dog_rates/status/880221127... 12 10 Jesse floofer https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
222 880221127280381952 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... https://twitter.com/dog_rates/status/880221127... 12 10 Jesse pupper https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
223 880221127280381952 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... https://twitter.com/dog_rates/status/880221127... 12 10 Jesse puppo https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True 4436 27640
224 880095782870896641 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... https://twitter.com/dog_rates/status/880095782... 11 10 None doggo https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
225 880095782870896641 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... https://twitter.com/dog_rates/status/880095782... 11 10 None floofer https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
226 880095782870896641 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... https://twitter.com/dog_rates/status/880095782... 11 10 None pupper https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
227 880095782870896641 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... https://twitter.com/dog_rates/status/880095782... 11 10 None puppo https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True 4533 28150
228 879862464715927552 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... https://twitter.com/dog_rates/status/879862464... 13 10 Romeo doggo https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
229 879862464715927552 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... https://twitter.com/dog_rates/status/879862464... 13 10 Romeo floofer https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
230 879862464715927552 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... https://twitter.com/dog_rates/status/879862464... 13 10 Romeo pupper https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
231 879862464715927552 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... https://twitter.com/dog_rates/status/879862464... 13 10 Romeo puppo https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True 3642 22667
232 879492040517615616 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... https://twitter.com/dog_rates/status/879492040... 12 10 Bailey doggo https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
233 879492040517615616 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... https://twitter.com/dog_rates/status/879492040... 12 10 Bailey floofer https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
234 879492040517615616 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... https://twitter.com/dog_rates/status/879492040... 12 10 Bailey pupper https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
235 879492040517615616 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... https://twitter.com/dog_rates/status/879492040... 12 10 Bailey puppo https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False 3323 23822
236 879415818425184262 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... https://twitter.com/dog_rates/status/879415818... 13 10 Duddles doggo https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
237 879415818425184262 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... https://twitter.com/dog_rates/status/879415818... 13 10 Duddles floofer https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
238 879415818425184262 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... https://twitter.com/dog_rates/status/879415818... 13 10 Duddles pupper https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
239 879415818425184262 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... https://twitter.com/dog_rates/status/879415818... 13 10 Duddles puppo https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True 45849 107956
240 879376492567855104 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... https://twitter.com/dog_rates/status/879376492... 12 10 Jack doggo https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
241 879376492567855104 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... https://twitter.com/dog_rates/status/879376492... 12 10 Jack floofer https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
242 879376492567855104 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... https://twitter.com/dog_rates/status/879376492... 12 10 Jack pupper https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
243 879376492567855104 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... https://twitter.com/dog_rates/status/879376492... 12 10 Jack puppo https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True 3261 17099
244 879050749262655488 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... https://twitter.com/dog_rates/status/879050749... 11 10 Steven doggo https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
245 879050749262655488 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... https://twitter.com/dog_rates/status/879050749... 11 10 Steven floofer https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
246 879050749262655488 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... https://twitter.com/dog_rates/status/879050749... 11 10 Steven pupper https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
247 879050749262655488 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... https://twitter.com/dog_rates/status/879050749... 11 10 Steven puppo https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False 4941 23022
248 879008229531029506 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... https://twitter.com/dog_rates/status/879008229... 13 10 Beau doggo https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
249 879008229531029506 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... https://twitter.com/dog_rates/status/879008229... 13 10 Beau floofer https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
250 879008229531029506 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... https://twitter.com/dog_rates/status/879008229... 13 10 Beau pupper https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
251 879008229531029506 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... https://twitter.com/dog_rates/status/879008229... 13 10 Beau puppo https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True 2812 19317
252 878776093423087618 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy doggo https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
253 878776093423087618 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy floofer https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
254 878776093423087618 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy pupper https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
255 878776093423087618 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy puppo https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True 4319 19763
256 878281511006478336 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow doggo https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
257 878281511006478336 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow floofer https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
258 878281511006478336 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow pupper https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
259 878281511006478336 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow puppo https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True 1349 7913
260 878057613040115712 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... https://twitter.com/dog_rates/status/878057613... 14 10 Emmy doggo https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
261 878057613040115712 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... https://twitter.com/dog_rates/status/878057613... 14 10 Emmy floofer https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
262 878057613040115712 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... https://twitter.com/dog_rates/status/878057613... 14 10 Emmy pupper https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
263 878057613040115712 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... https://twitter.com/dog_rates/status/878057613... 14 10 Emmy puppo https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True 7181 42876
264 877736472329191424 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... https://twitter.com/dog_rates/status/877736472... 13 10 Aja doggo https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
265 877736472329191424 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... https://twitter.com/dog_rates/status/877736472... 13 10 Aja floofer https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
266 877736472329191424 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... https://twitter.com/dog_rates/status/877736472... 13 10 Aja pupper https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
267 877736472329191424 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... https://twitter.com/dog_rates/status/877736472... 13 10 Aja puppo https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True 17300 71144
268 877611172832227328 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... https://twitter.com/rachel2195/status/87685077... 14 10 None doggo https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
269 877611172832227328 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... https://twitter.com/rachel2195/status/87685077... 14 10 None floofer https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
270 877611172832227328 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... https://twitter.com/rachel2195/status/87685077... 14 10 None pupper https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
271 877611172832227328 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... https://twitter.com/rachel2195/status/87685077... 14 10 None puppo https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True 83 0
272 877556246731214848 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... https://twitter.com/dog_rates/status/877556246... 12 10 Penny doggo https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
273 877556246731214848 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... https://twitter.com/dog_rates/status/877556246... 12 10 Penny floofer https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
274 877556246731214848 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... https://twitter.com/dog_rates/status/877556246... 12 10 Penny pupper https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
275 877556246731214848 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... https://twitter.com/dog_rates/status/877556246... 12 10 Penny puppo https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False 3994 23258
276 877316821321428993 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... https://twitter.com/dog_rates/status/877316821... 13 10 Dante doggo https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
277 877316821321428993 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... https://twitter.com/dog_rates/status/877316821... 13 10 Dante floofer https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
278 877316821321428993 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... https://twitter.com/dog_rates/status/877316821... 13 10 Dante pupper https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
279 877316821321428993 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... https://twitter.com/dog_rates/status/877316821... 13 10 Dante puppo https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True 5414 27907
280 877201837425926144 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... https://twitter.com/dog_rates/status/877201837... 12 10 Nelly doggo https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
281 877201837425926144 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... https://twitter.com/dog_rates/status/877201837... 12 10 Nelly floofer https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
282 877201837425926144 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... https://twitter.com/dog_rates/status/877201837... 12 10 Nelly pupper https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
283 877201837425926144 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... https://twitter.com/dog_rates/status/877201837... 12 10 Nelly puppo https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True 5880 27755
284 876838120628539392 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... https://twitter.com/dog_rates/status/876838120... 12 10 Ginger doggo https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
285 876838120628539392 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... https://twitter.com/dog_rates/status/876838120... 12 10 Ginger floofer https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
286 876838120628539392 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... https://twitter.com/dog_rates/status/876838120... 12 10 Ginger pupper https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
287 876838120628539392 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... https://twitter.com/dog_rates/status/876838120... 12 10 Ginger puppo https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True 3506 21125
288 876484053909872640 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... https://twitter.com/dog_rates/status/876484053... 13 10 Benedict doggo https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
289 876484053909872640 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... https://twitter.com/dog_rates/status/876484053... 13 10 Benedict floofer https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
290 876484053909872640 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... https://twitter.com/dog_rates/status/876484053... 13 10 Benedict pupper https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
291 876484053909872640 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... https://twitter.com/dog_rates/status/876484053... 13 10 Benedict puppo https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True 2511 19163
292 876120275196170240 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... https://twitter.com/dog_rates/status/876120275... 13 10 Venti doggo https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
293 876120275196170240 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... https://twitter.com/dog_rates/status/876120275... 13 10 Venti floofer https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
294 876120275196170240 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... https://twitter.com/dog_rates/status/876120275... 13 10 Venti pupper https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
295 876120275196170240 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... https://twitter.com/dog_rates/status/876120275... 13 10 Venti puppo https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True 4903 28490
296 875747767867523072 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... https://twitter.com/dog_rates/status/875747767... 13 10 Goose doggo https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
297 875747767867523072 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... https://twitter.com/dog_rates/status/875747767... 13 10 Goose floofer https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
298 875747767867523072 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... https://twitter.com/dog_rates/status/875747767... 13 10 Goose pupper https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
299 875747767867523072 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... https://twitter.com/dog_rates/status/875747767... 13 10 Goose puppo https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True 4497 25773
300 875144289856114688 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... https://twitter.com/dog_rates/status/875144289... 13 10 Nugget doggo https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
301 875144289856114688 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... https://twitter.com/dog_rates/status/875144289... 13 10 Nugget floofer https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
302 875144289856114688 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... https://twitter.com/dog_rates/status/875144289... 13 10 Nugget pupper https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
303 875144289856114688 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... https://twitter.com/dog_rates/status/875144289... 13 10 Nugget puppo https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False 5081 22185
304 875021211251597312 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... https://twitter.com/dog_rates/status/875021211... 12 10 None doggo https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
305 875021211251597312 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... https://twitter.com/dog_rates/status/875021211... 12 10 None floofer https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
306 875021211251597312 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... https://twitter.com/dog_rates/status/875021211... 12 10 None pupper https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
307 875021211251597312 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... https://twitter.com/dog_rates/status/875021211... 12 10 None puppo https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True 4922 26022
308 874680097055178752 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... https://twitter.com/dog_rates/status/874680097... 12 10 Cash doggo https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
309 874680097055178752 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... https://twitter.com/dog_rates/status/874680097... 12 10 Cash floofer https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
310 874680097055178752 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... https://twitter.com/dog_rates/status/874680097... 12 10 Cash pupper https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
311 874680097055178752 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... https://twitter.com/dog_rates/status/874680097... 12 10 Cash puppo https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True 4875 28439
312 874296783580663808 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... https://twitter.com/dog_rates/status/874296783... 13 10 Jed doggo https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
313 874296783580663808 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... https://twitter.com/dog_rates/status/874296783... 13 10 Jed floofer https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
314 874296783580663808 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... https://twitter.com/dog_rates/status/874296783... 13 10 Jed pupper https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
315 874296783580663808 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... https://twitter.com/dog_rates/status/874296783... 13 10 Jed puppo https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True 4308 26651
316 874057562936811520 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... https://twitter.com/dog_rates/status/874057562... 12 10 None doggo https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
317 874057562936811520 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... https://twitter.com/dog_rates/status/874057562... 12 10 None floofer https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
318 874057562936811520 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... https://twitter.com/dog_rates/status/874057562... 12 10 None pupper https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
319 874057562936811520 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... https://twitter.com/dog_rates/status/874057562... 12 10 None puppo https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True 4125 23134
320 874012996292530176 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian doggo https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
321 874012996292530176 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian floofer https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
322 874012996292530176 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian pupper https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
323 874012996292530176 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian puppo https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True 11007 35501
324 873697596434513921 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... https://twitter.com/dog_rates/status/868880397... 14 10 Walter doggo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
325 873697596434513921 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... https://twitter.com/dog_rates/status/868880397... 14 10 Walter floofer https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
326 873697596434513921 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... https://twitter.com/dog_rates/status/868880397... 14 10 Walter pupper https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
327 873697596434513921 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... https://twitter.com/dog_rates/status/868880397... 14 10 Walter puppo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 0
328 873580283840344065 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... https://twitter.com/dog_rates/status/873580283... 13 10 None doggo https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
329 873580283840344065 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... https://twitter.com/dog_rates/status/873580283... 13 10 None floofer https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
330 873580283840344065 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... https://twitter.com/dog_rates/status/873580283... 13 10 None pupper https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
331 873580283840344065 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... https://twitter.com/dog_rates/status/873580283... 13 10 None puppo https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True 4143 24837
332 873213775632977920 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra doggo https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
333 873213775632977920 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra floofer https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
334 873213775632977920 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra pupper https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
335 873213775632977920 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra puppo https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True 1667 7467
336 872967104147763200 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... https://twitter.com/dog_rates/status/872967104... 12 10 None doggo https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
337 872967104147763200 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... https://twitter.com/dog_rates/status/872967104... 12 10 None floofer https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
338 872967104147763200 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... https://twitter.com/dog_rates/status/872967104... 12 10 None pupper https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
339 872967104147763200 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... https://twitter.com/dog_rates/status/872967104... 12 10 None puppo https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True 5669 28031
340 872820683541237760 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... https://twitter.com/dog_rates/status/872820683... 13 10 None doggo https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
341 872820683541237760 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... https://twitter.com/dog_rates/status/872820683... 13 10 None floofer https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
342 872820683541237760 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... https://twitter.com/dog_rates/status/872820683... 13 10 None pupper https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
343 872820683541237760 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... https://twitter.com/dog_rates/status/872820683... 13 10 None puppo https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True 3884 15029
344 872620804844003328 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... https://twitter.com/dog_rates/status/872620804... 13 10 Monkey doggo https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
345 872620804844003328 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... https://twitter.com/dog_rates/status/872620804... 13 10 Monkey floofer https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
346 872620804844003328 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... https://twitter.com/dog_rates/status/872620804... 13 10 Monkey pupper https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
347 872620804844003328 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... https://twitter.com/dog_rates/status/872620804... 13 10 Monkey puppo https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True 3911 21309
348 872486979161796608 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... https://twitter.com/dog_rates/status/872486979... 12 10 None doggo https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
349 872486979161796608 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... https://twitter.com/dog_rates/status/872486979... 12 10 None floofer https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
350 872486979161796608 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... https://twitter.com/dog_rates/status/872486979... 12 10 None pupper https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
351 872486979161796608 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... https://twitter.com/dog_rates/status/872486979... 12 10 None puppo https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True 9429 41606
352 872261713294495745 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... https://twitter.com/dog_rates/status/872261713... 13 10 Harry doggo https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
353 872261713294495745 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... https://twitter.com/dog_rates/status/872261713... 13 10 Harry floofer https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
354 872261713294495745 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... https://twitter.com/dog_rates/status/872261713... 13 10 Harry pupper https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
355 872261713294495745 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... https://twitter.com/dog_rates/status/872261713... 13 10 Harry puppo https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True 6649 35085
356 872122724285648897 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... https://twitter.com/dog_rates/status/872122724... 12 10 Kody doggo https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
357 872122724285648897 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... https://twitter.com/dog_rates/status/872122724... 12 10 Kody floofer https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
358 872122724285648897 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... https://twitter.com/dog_rates/status/872122724... 12 10 Kody pupper https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
359 872122724285648897 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... https://twitter.com/dog_rates/status/872122724... 12 10 Kody puppo https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True 8549 35324
360 871879754684805121 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... https://twitter.com/dog_rates/status/871879754... 13 10 Lassie doggo https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
361 871879754684805121 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... https://twitter.com/dog_rates/status/871879754... 13 10 Lassie floofer https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
362 871879754684805121 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... https://twitter.com/dog_rates/status/871879754... 13 10 Lassie pupper https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
363 871879754684805121 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... https://twitter.com/dog_rates/status/871879754... 13 10 Lassie puppo https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True 11918 39090
364 871762521631449091 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... https://twitter.com/dog_rates/status/871762521... 12 10 Rover doggo https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
365 871762521631449091 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... https://twitter.com/dog_rates/status/871762521... 12 10 Rover floofer https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
366 871762521631449091 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... https://twitter.com/dog_rates/status/871762521... 12 10 Rover pupper https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
367 871762521631449091 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... https://twitter.com/dog_rates/status/871762521... 12 10 Rover puppo https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True 3678 20787
368 871515927908634625 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... https://twitter.com/dog_rates/status/871515927... 12 10 Napolean doggo https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
369 871515927908634625 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... https://twitter.com/dog_rates/status/871515927... 12 10 Napolean floofer https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
370 871515927908634625 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... https://twitter.com/dog_rates/status/871515927... 12 10 Napolean pupper https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
371 871515927908634625 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... https://twitter.com/dog_rates/status/871515927... 12 10 Napolean puppo https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False 3628 20730
372 871032628920680449 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... https://twitter.com/dog_rates/status/871032628... 13 10 Boomer doggo https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
373 871032628920680449 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... https://twitter.com/dog_rates/status/871032628... 13 10 Boomer floofer https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
374 871032628920680449 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... https://twitter.com/dog_rates/status/871032628... 13 10 Boomer pupper https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
375 871032628920680449 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... https://twitter.com/dog_rates/status/871032628... 13 10 Boomer puppo https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False 3999 23255
376 870804317367881728 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... https://twitter.com/dog_rates/status/870804317... 11 10 None doggo https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
377 870804317367881728 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... https://twitter.com/dog_rates/status/870804317... 11 10 None floofer https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
378 870804317367881728 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... https://twitter.com/dog_rates/status/870804317... 11 10 None pupper https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
379 870804317367881728 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... https://twitter.com/dog_rates/status/870804317... 11 10 None puppo https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False 6393 33791
380 870656317836468226 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody doggo https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
381 870656317836468226 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody floofer https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
382 870656317836468226 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody pupper https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
383 870656317836468226 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody puppo https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True 2817 12819
384 870374049280663552 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... https://twitter.com/dog_rates/status/870374049... 13 10 Zoey doggo https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
385 870374049280663552 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... https://twitter.com/dog_rates/status/870374049... 13 10 Zoey floofer https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
386 870374049280663552 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... https://twitter.com/dog_rates/status/870374049... 13 10 Zoey pupper https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
387 870374049280663552 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... https://twitter.com/dog_rates/status/870374049... 13 10 Zoey puppo https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True 27680 85011
388 870308999962521604 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... https://twitter.com/dog_rates/status/870308999... 13 10 Rumble doggo https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
389 870308999962521604 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... https://twitter.com/dog_rates/status/870308999... 13 10 Rumble floofer https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
390 870308999962521604 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... https://twitter.com/dog_rates/status/870308999... 13 10 Rumble pupper https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
391 870308999962521604 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... https://twitter.com/dog_rates/status/870308999... 13 10 Rumble puppo https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True 4384 22453
392 870063196459192321 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... https://twitter.com/dog_rates/status/870063196... 14 10 Clifford doggo https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
393 870063196459192321 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... https://twitter.com/dog_rates/status/870063196... 14 10 Clifford floofer https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
394 870063196459192321 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... https://twitter.com/dog_rates/status/870063196... 14 10 Clifford pupper https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
395 870063196459192321 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... https://twitter.com/dog_rates/status/870063196... 14 10 Clifford puppo https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False 8840 37771
396 869772420881756160 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... https://twitter.com/dog_rates/status/869772420... 13 10 Dewey doggo https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
397 869772420881756160 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... https://twitter.com/dog_rates/status/869772420... 13 10 Dewey floofer https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
398 869772420881756160 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... https://twitter.com/dog_rates/status/869772420... 13 10 Dewey pupper https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
399 869772420881756160 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... https://twitter.com/dog_rates/status/869772420... 13 10 Dewey puppo https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True 10663 43710
400 869702957897576449 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... https://twitter.com/dog_rates/status/869702957... 13 10 Stanley doggo https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
401 869702957897576449 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... https://twitter.com/dog_rates/status/869702957... 13 10 Stanley floofer https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
402 869702957897576449 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... https://twitter.com/dog_rates/status/869702957... 13 10 Stanley pupper https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
403 869702957897576449 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... https://twitter.com/dog_rates/status/869702957... 13 10 Stanley puppo https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True 6728 29116
404 869596645499047938 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... https://twitter.com/dog_rates/status/869596645... 12 10 Scout doggo https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
405 869596645499047938 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... https://twitter.com/dog_rates/status/869596645... 12 10 Scout floofer https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
406 869596645499047938 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... https://twitter.com/dog_rates/status/869596645... 12 10 Scout pupper https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
407 869596645499047938 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... https://twitter.com/dog_rates/status/869596645... 12 10 Scout puppo https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False 3327 16476
408 869227993411051520 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo doggo https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
409 869227993411051520 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo floofer https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
410 869227993411051520 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo pupper https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
411 869227993411051520 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo puppo https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True 4023 21112
412 868880397819494401 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... https://twitter.com/dog_rates/status/868880397... 14 10 Walter doggo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
413 868880397819494401 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... https://twitter.com/dog_rates/status/868880397... 14 10 Walter floofer https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
414 868880397819494401 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... https://twitter.com/dog_rates/status/868880397... 14 10 Walter pupper https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
415 868880397819494401 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... https://twitter.com/dog_rates/status/868880397... 14 10 Walter puppo https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False 12518 55098
416 868622495443632128 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... https://twitter.com/dog_rates/status/868622495... 13 10 None doggo https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
417 868622495443632128 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... https://twitter.com/dog_rates/status/868622495... 13 10 None floofer https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
418 868622495443632128 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... https://twitter.com/dog_rates/status/868622495... 13 10 None pupper https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
419 868622495443632128 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... https://twitter.com/dog_rates/status/868622495... 13 10 None puppo https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True 6275 28295
420 868552278524837888 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper doggo https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
421 868552278524837888 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper floofer https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
422 868552278524837888 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper pupper https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
423 868552278524837888 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper puppo https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True 2240 10539
424 867900495410671616 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... https://twitter.com/dog_rates/status/867900495... 12 10 None doggo https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
425 867900495410671616 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... https://twitter.com/dog_rates/status/867900495... 12 10 None floofer https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
426 867900495410671616 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... https://twitter.com/dog_rates/status/867900495... 12 10 None pupper https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
427 867900495410671616 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... https://twitter.com/dog_rates/status/867900495... 12 10 None puppo https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True 4439 24964
428 867774946302451713 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... https://twitter.com/dog_rates/status/867774946... 13 10 Harold doggo https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
429 867774946302451713 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... https://twitter.com/dog_rates/status/867774946... 13 10 Harold floofer https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
430 867774946302451713 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... https://twitter.com/dog_rates/status/867774946... 13 10 Harold pupper https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
431 867774946302451713 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... https://twitter.com/dog_rates/status/867774946... 13 10 Harold puppo https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True 7788 35179
432 867421006826221569 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... https://twitter.com/dog_rates/status/867421006... 12 10 Shikha doggo https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
433 867421006826221569 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... https://twitter.com/dog_rates/status/867421006... 12 10 Shikha floofer https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
434 867421006826221569 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... https://twitter.com/dog_rates/status/867421006... 12 10 Shikha pupper https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
435 867421006826221569 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... https://twitter.com/dog_rates/status/867421006... 12 10 Shikha puppo https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True 2697 16755
436 867072653475098625 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... https://twitter.com/rachaeleasler/status/86501... 13 10 None doggo https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
437 867072653475098625 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... https://twitter.com/rachaeleasler/status/86501... 13 10 None floofer https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
438 867072653475098625 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... https://twitter.com/rachaeleasler/status/86501... 13 10 None pupper https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
439 867072653475098625 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... https://twitter.com/rachaeleasler/status/86501... 13 10 None puppo https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True 135 0
440 867051520902168576 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... https://twitter.com/dog_rates/status/867051520... 13 10 None doggo https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
441 867051520902168576 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... https://twitter.com/dog_rates/status/867051520... 13 10 None floofer https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
442 867051520902168576 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... https://twitter.com/dog_rates/status/867051520... 13 10 None pupper https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
443 867051520902168576 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... https://twitter.com/dog_rates/status/867051520... 13 10 None puppo https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True 8425 33420
444 866686824827068416 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... https://twitter.com/dog_rates/status/866686824... 12 10 Lili doggo https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
445 866686824827068416 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... https://twitter.com/dog_rates/status/866686824... 12 10 Lili floofer https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
446 866686824827068416 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... https://twitter.com/dog_rates/status/866686824... 12 10 Lili pupper https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
447 866686824827068416 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... https://twitter.com/dog_rates/status/866686824... 12 10 Lili puppo https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True 3727 20070
448 866450705531457537 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy doggo https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
449 866450705531457537 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy floofer https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
450 866450705531457537 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy pupper https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
451 866450705531457537 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy puppo https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True 32883 106827
452 866334964761202691 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... https://twitter.com/dog_rates/status/866334964... 12 10 Coco doggo https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
453 866334964761202691 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... https://twitter.com/dog_rates/status/866334964... 12 10 Coco floofer https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
454 866334964761202691 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... https://twitter.com/dog_rates/status/866334964... 12 10 Coco pupper https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
455 866334964761202691 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... https://twitter.com/dog_rates/status/866334964... 12 10 Coco puppo https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True 15546 54720
456 865718153858494464 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... https://twitter.com/dog_rates/status/865718153... 13 10 Boomer doggo https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
457 865718153858494464 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... https://twitter.com/dog_rates/status/865718153... 13 10 Boomer floofer https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
458 865718153858494464 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... https://twitter.com/dog_rates/status/865718153... 13 10 Boomer pupper https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
459 865718153858494464 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... https://twitter.com/dog_rates/status/865718153... 13 10 Boomer puppo https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True 6008 26640
460 865359393868664832 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... https://twitter.com/dog_rates/status/865359393... 13 10 Sammy doggo https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
461 865359393868664832 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... https://twitter.com/dog_rates/status/865359393... 13 10 Sammy floofer https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
462 865359393868664832 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... https://twitter.com/dog_rates/status/865359393... 13 10 Sammy pupper https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
463 865359393868664832 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... https://twitter.com/dog_rates/status/865359393... 13 10 Sammy puppo https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True 5384 27530
464 865006731092295680 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... https://twitter.com/dog_rates/status/865006731... 13 10 Nelly doggo https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
465 865006731092295680 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... https://twitter.com/dog_rates/status/865006731... 13 10 Nelly floofer https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
466 865006731092295680 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... https://twitter.com/dog_rates/status/865006731... 13 10 Nelly pupper https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
467 865006731092295680 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... https://twitter.com/dog_rates/status/865006731... 13 10 Nelly puppo https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True 8209 29063
468 864873206498414592 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... https://twitter.com/dog_rates/status/864873206... 14 10 None doggo https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
469 864873206498414592 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... https://twitter.com/dog_rates/status/864873206... 14 10 None floofer https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
470 864873206498414592 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... https://twitter.com/dog_rates/status/864873206... 14 10 None pupper https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
471 864873206498414592 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... https://twitter.com/dog_rates/status/864873206... 14 10 None puppo https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False 9361 33651
472 864279568663928832 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... https://twitter.com/dog_rates/status/864279568... 12 10 Meatball doggo https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
473 864279568663928832 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... https://twitter.com/dog_rates/status/864279568... 12 10 Meatball floofer https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
474 864279568663928832 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... https://twitter.com/dog_rates/status/864279568... 12 10 Meatball pupper https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
475 864279568663928832 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... https://twitter.com/dog_rates/status/864279568... 12 10 Meatball puppo https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True 3266 15195
476 864197398364647424 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... https://twitter.com/dog_rates/status/864197398... 13 10 Paisley doggo https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
477 864197398364647424 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... https://twitter.com/dog_rates/status/864197398... 13 10 Paisley floofer https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
478 864197398364647424 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... https://twitter.com/dog_rates/status/864197398... 13 10 Paisley pupper https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
479 864197398364647424 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... https://twitter.com/dog_rates/status/864197398... 13 10 Paisley puppo https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True 9616 31459
480 863907417377173506 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... https://twitter.com/dog_rates/status/863907417... 13 10 Albus doggo https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
481 863907417377173506 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... https://twitter.com/dog_rates/status/863907417... 13 10 Albus floofer https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
482 863907417377173506 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... https://twitter.com/dog_rates/status/863907417... 13 10 Albus pupper https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
483 863907417377173506 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... https://twitter.com/dog_rates/status/863907417... 13 10 Albus puppo https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False 4441 21477
484 863553081350529029 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... https://twitter.com/dog_rates/status/863553081... 13 10 Neptune doggo https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
485 863553081350529029 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... https://twitter.com/dog_rates/status/863553081... 13 10 Neptune floofer https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
486 863553081350529029 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... https://twitter.com/dog_rates/status/863553081... 13 10 Neptune pupper https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
487 863553081350529029 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... https://twitter.com/dog_rates/status/863553081... 13 10 Neptune puppo https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True 4489 15935
488 863432100342583297 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... https://twitter.com/dog_rates/status/863432100... 12 10 Belle doggo https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
489 863432100342583297 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... https://twitter.com/dog_rates/status/863432100... 12 10 Belle floofer https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
490 863432100342583297 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... https://twitter.com/dog_rates/status/863432100... 12 10 Belle pupper https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
491 863432100342583297 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... https://twitter.com/dog_rates/status/863432100... 12 10 Belle puppo https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True 5664 24829
492 863079547188785154 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... https://twitter.com/dog_rates/status/863079547... 14 10 None doggo https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
493 863079547188785154 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... https://twitter.com/dog_rates/status/863079547... 14 10 None floofer https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
494 863079547188785154 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... https://twitter.com/dog_rates/status/863079547... 14 10 None pupper https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
495 863079547188785154 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... https://twitter.com/dog_rates/status/863079547... 14 10 None puppo https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False 1195 9094
496 863062471531167744 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn doggo https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
497 863062471531167744 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn floofer https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
498 863062471531167744 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn pupper https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
499 863062471531167744 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn puppo https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True 2687 8945
500 862831371563274240 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... https://twitter.com/dog_rates/status/862831371... 13 10 Zooey doggo https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
501 862831371563274240 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... https://twitter.com/dog_rates/status/862831371... 13 10 Zooey floofer https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
502 862831371563274240 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... https://twitter.com/dog_rates/status/862831371... 13 10 Zooey pupper https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
503 862831371563274240 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... https://twitter.com/dog_rates/status/862831371... 13 10 Zooey puppo https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True 5457 20011
504 862722525377298433 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... https://twitter.com/dog_rates/status/862722525... 11 10 Dave doggo https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
505 862722525377298433 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... https://twitter.com/dog_rates/status/862722525... 11 10 Dave floofer https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
506 862722525377298433 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... https://twitter.com/dog_rates/status/862722525... 11 10 Dave pupper https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
507 862722525377298433 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... https://twitter.com/dog_rates/status/862722525... 11 10 Dave puppo https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True 3809 17779
508 862457590147678208 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... https://twitter.com/dog_rates/status/862457590... 13 10 Jersey doggo https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
509 862457590147678208 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... https://twitter.com/dog_rates/status/862457590... 13 10 Jersey floofer https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
510 862457590147678208 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... https://twitter.com/dog_rates/status/862457590... 13 10 Jersey pupper https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
511 862457590147678208 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... https://twitter.com/dog_rates/status/862457590... 13 10 Jersey puppo https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False 5388 21492
512 862096992088072192 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... https://twitter.com/dog_rates/status/862096992... 13 10 None doggo https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
513 862096992088072192 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... https://twitter.com/dog_rates/status/862096992... 13 10 None floofer https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
514 862096992088072192 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... https://twitter.com/dog_rates/status/862096992... 13 10 None pupper https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
515 862096992088072192 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... https://twitter.com/dog_rates/status/862096992... 13 10 None puppo https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True 21840 66437
516 861769973181624320 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... https://twitter.com/dog_rates/status/806629075... 13 10 None doggo https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
517 861769973181624320 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... https://twitter.com/dog_rates/status/806629075... 13 10 None floofer https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
518 861769973181624320 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... https://twitter.com/dog_rates/status/806629075... 13 10 None pupper https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
519 861769973181624320 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... https://twitter.com/dog_rates/status/806629075... 13 10 None puppo https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True 37911 0
520 861383897657036800 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes doggo https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
521 861383897657036800 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes floofer https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
522 861383897657036800 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes pupper https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
523 861383897657036800 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes puppo https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True 11528 37744
524 861288531465048066 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... https://twitter.com/dog_rates/status/861288531... 13 10 None doggo https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
525 861288531465048066 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... https://twitter.com/dog_rates/status/861288531... 13 10 None floofer https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
526 861288531465048066 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... https://twitter.com/dog_rates/status/861288531... 13 10 None pupper https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
527 861288531465048066 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... https://twitter.com/dog_rates/status/861288531... 13 10 None puppo https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True 4479 18032
528 861005113778896900 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... https://twitter.com/dog_rates/status/861005113... 12 10 Burt doggo https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
529 861005113778896900 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... https://twitter.com/dog_rates/status/861005113... 12 10 Burt floofer https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
530 861005113778896900 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... https://twitter.com/dog_rates/status/861005113... 12 10 Burt pupper https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
531 861005113778896900 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... https://twitter.com/dog_rates/status/861005113... 12 10 Burt puppo https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False 4119 17538
532 860924035999428608 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... https://twitter.com/tallylott/status/860914485... 13 10 None doggo https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
533 860924035999428608 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... https://twitter.com/tallylott/status/860914485... 13 10 None floofer https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
534 860924035999428608 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... https://twitter.com/tallylott/status/860914485... 13 10 None pupper https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
535 860924035999428608 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... https://twitter.com/tallylott/status/860914485... 13 10 None puppo https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False 882 0
536 860563773140209665 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo doggo https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
537 860563773140209665 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo floofer https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
538 860563773140209665 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo pupper https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
539 860563773140209665 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo puppo https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True 2334 7878
540 860524505164394496 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... https://twitter.com/dog_rates/status/860524505... 13 10 Carl doggo https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
541 860524505164394496 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... https://twitter.com/dog_rates/status/860524505... 13 10 Carl floofer https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
542 860524505164394496 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... https://twitter.com/dog_rates/status/860524505... 13 10 Carl pupper https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
543 860524505164394496 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... https://twitter.com/dog_rates/status/860524505... 13 10 Carl puppo https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True 5698 24678
544 860276583193509888 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... https://twitter.com/dog_rates/status/860276583... 12 10 Jordy doggo https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
545 860276583193509888 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... https://twitter.com/dog_rates/status/860276583... 12 10 Jordy floofer https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
546 860276583193509888 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... https://twitter.com/dog_rates/status/860276583... 12 10 Jordy pupper https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
547 860276583193509888 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... https://twitter.com/dog_rates/status/860276583... 12 10 Jordy puppo https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False 3745 19154
548 860184849394610176 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... https://twitter.com/dog_rates/status/860184849... 14 10 None doggo https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
549 860184849394610176 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... https://twitter.com/dog_rates/status/860184849... 14 10 None floofer https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
550 860184849394610176 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... https://twitter.com/dog_rates/status/860184849... 14 10 None pupper https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
551 860184849394610176 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... https://twitter.com/dog_rates/status/860184849... 14 10 None puppo https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False 6295 17474
552 859924526012018688 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... https://twitter.com/dog_rates/status/859924526... 12 10 Milky doggo https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
553 859924526012018688 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... https://twitter.com/dog_rates/status/859924526... 12 10 Milky floofer https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
554 859924526012018688 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... https://twitter.com/dog_rates/status/859924526... 12 10 Milky pupper https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
555 859924526012018688 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... https://twitter.com/dog_rates/status/859924526... 12 10 Milky puppo https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False 4349 20021
556 859851578198683649 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... https://twitter.com/dog_rates/status/859851578... 13 10 Trooper doggo https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
557 859851578198683649 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... https://twitter.com/dog_rates/status/859851578... 13 10 Trooper floofer https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
558 859851578198683649 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... https://twitter.com/dog_rates/status/859851578... 13 10 Trooper pupper https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
559 859851578198683649 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... https://twitter.com/dog_rates/status/859851578... 13 10 Trooper puppo https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True 3780 16105
560 859607811541651456 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... https://twitter.com/dog_rates/status/859607811... 13 10 None doggo https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
561 859607811541651456 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... https://twitter.com/dog_rates/status/859607811... 13 10 None floofer https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
562 859607811541651456 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... https://twitter.com/dog_rates/status/859607811... 13 10 None pupper https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
563 859607811541651456 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... https://twitter.com/dog_rates/status/859607811... 13 10 None puppo https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True 1704 19476
564 859196978902773760 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... https://twitter.com/dog_rates/status/859196978... 12 10 quite doggo https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
565 859196978902773760 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... https://twitter.com/dog_rates/status/859196978... 12 10 quite floofer https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
566 859196978902773760 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... https://twitter.com/dog_rates/status/859196978... 12 10 quite pupper https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
567 859196978902773760 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... https://twitter.com/dog_rates/status/859196978... 12 10 quite puppo https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False 25661 75193
568 859074603037188101 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... https://twitter.com/dog_rates/status/859074603... 13 10 None doggo https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
569 859074603037188101 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... https://twitter.com/dog_rates/status/859074603... 13 10 None floofer https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
570 859074603037188101 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... https://twitter.com/dog_rates/status/859074603... 13 10 None pupper https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
571 859074603037188101 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... https://twitter.com/dog_rates/status/859074603... 13 10 None puppo https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False 14740 35553
572 858843525470990336 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... https://twitter.com/dog_rates/status/858843525... 13 10 None doggo https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
573 858843525470990336 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... https://twitter.com/dog_rates/status/858843525... 13 10 None floofer https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
574 858843525470990336 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... https://twitter.com/dog_rates/status/858843525... 13 10 None pupper https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
575 858843525470990336 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... https://twitter.com/dog_rates/status/858843525... 13 10 None puppo https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True 3771 16304
576 858471635011153920 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... https://twitter.com/dog_rates/status/858471635... 13 10 Sophie doggo https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
577 858471635011153920 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... https://twitter.com/dog_rates/status/858471635... 13 10 Sophie floofer https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
578 858471635011153920 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... https://twitter.com/dog_rates/status/858471635... 13 10 Sophie pupper https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
579 858471635011153920 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... https://twitter.com/dog_rates/status/858471635... 13 10 Sophie puppo https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True 5271 22640
580 858107933456039936 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt doggo https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
581 858107933456039936 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt floofer https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
582 858107933456039936 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt pupper https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
583 858107933456039936 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt puppo https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False 3154 16524
584 857989990357356544 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... https://twitter.com/dog_rates/status/857989990... 12 10 Rosie doggo https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
585 857989990357356544 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... https://twitter.com/dog_rates/status/857989990... 12 10 Rosie floofer https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
586 857989990357356544 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... https://twitter.com/dog_rates/status/857989990... 12 10 Rosie pupper https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
587 857989990357356544 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... https://twitter.com/dog_rates/status/857989990... 12 10 Rosie puppo https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True 2812 16952
588 857746408056729600 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... https://twitter.com/dog_rates/status/857746408... 13 10 Thor doggo https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
589 857746408056729600 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... https://twitter.com/dog_rates/status/857746408... 13 10 Thor floofer https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
590 857746408056729600 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... https://twitter.com/dog_rates/status/857746408... 13 10 Thor pupper https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
591 857746408056729600 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... https://twitter.com/dog_rates/status/857746408... 13 10 Thor puppo https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True 11524 36021
592 857393404942143489 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None doggo https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
593 857393404942143489 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None floofer https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
594 857393404942143489 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None pupper https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
595 857393404942143489 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None puppo https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True 1785 6236
596 857263160327368704 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... https://twitter.com/dog_rates/status/857263160... 13 10 Oscar doggo https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
597 857263160327368704 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... https://twitter.com/dog_rates/status/857263160... 13 10 Oscar floofer https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
598 857263160327368704 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... https://twitter.com/dog_rates/status/857263160... 13 10 Oscar pupper https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
599 857263160327368704 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... https://twitter.com/dog_rates/status/857263160... 13 10 Oscar puppo https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True 4934 21041
600 857029823797047296 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... https://twitter.com/dog_rates/status/857029823... 12 10 Zeke doggo https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
601 857029823797047296 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... https://twitter.com/dog_rates/status/857029823... 12 10 Zeke floofer https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
602 857029823797047296 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... https://twitter.com/dog_rates/status/857029823... 12 10 Zeke pupper https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
603 857029823797047296 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... https://twitter.com/dog_rates/status/857029823... 12 10 Zeke puppo https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True 4364 19910
604 856543823941562368 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... https://twitter.com/dog_rates/status/856543823... 12 10 Callie doggo https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
605 856543823941562368 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... https://twitter.com/dog_rates/status/856543823... 12 10 Callie floofer https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
606 856543823941562368 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... https://twitter.com/dog_rates/status/856543823... 12 10 Callie pupper https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
607 856543823941562368 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... https://twitter.com/dog_rates/status/856543823... 12 10 Callie puppo https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True 3131 17135
608 856526610513747968 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... https://twitter.com/dog_rates/status/856526610... 14 10 None doggo https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
609 856526610513747968 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... https://twitter.com/dog_rates/status/856526610... 14 10 None floofer https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
610 856526610513747968 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... https://twitter.com/dog_rates/status/856526610... 14 10 None pupper https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
611 856526610513747968 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... https://twitter.com/dog_rates/status/856526610... 14 10 None puppo https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True 2068 12446
612 856282028240666624 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... https://twitter.com/dog_rates/status/856282028... 14 10 Cermet doggo https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
613 856282028240666624 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... https://twitter.com/dog_rates/status/856282028... 14 10 Cermet floofer https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
614 856282028240666624 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... https://twitter.com/dog_rates/status/856282028... 14 10 Cermet pupper https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
615 856282028240666624 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... https://twitter.com/dog_rates/status/856282028... 14 10 Cermet puppo https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True 6841 29086
616 855851453814013952 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... https://twitter.com/dog_rates/status/855851453... 13 10 None doggo https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
617 855851453814013952 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... https://twitter.com/dog_rates/status/855851453... 13 10 None floofer https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
618 855851453814013952 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... https://twitter.com/dog_rates/status/855851453... 13 10 None pupper https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
619 855851453814013952 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... https://twitter.com/dog_rates/status/855851453... 13 10 None puppo https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True 19196 47844
620 855459453768019968 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... https://twitter.com/dog_rates/status/855459453... 12 10 quite doggo https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
621 855459453768019968 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... https://twitter.com/dog_rates/status/855459453... 12 10 quite floofer https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
622 855459453768019968 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... https://twitter.com/dog_rates/status/855459453... 12 10 quite pupper https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
623 855459453768019968 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... https://twitter.com/dog_rates/status/855459453... 12 10 quite puppo https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True 8987 31657
624 854732716440526848 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... https://twitter.com/dog_rates/status/854732716... 12 10 Marlee doggo https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
625 854732716440526848 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... https://twitter.com/dog_rates/status/854732716... 12 10 Marlee floofer https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
626 854732716440526848 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... https://twitter.com/dog_rates/status/854732716... 12 10 Marlee pupper https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
627 854732716440526848 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... https://twitter.com/dog_rates/status/854732716... 12 10 Marlee puppo https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True 6690 24188
628 854482394044301312 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... https://twitter.com/dog_rates/status/854482394... 13 10 Arya doggo https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
629 854482394044301312 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... https://twitter.com/dog_rates/status/854482394... 13 10 Arya floofer https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
630 854482394044301312 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... https://twitter.com/dog_rates/status/854482394... 13 10 Arya pupper https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
631 854482394044301312 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... https://twitter.com/dog_rates/status/854482394... 13 10 Arya puppo https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True 7608 31131
632 854365224396361728 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... https://twitter.com/dog_rates/status/854365224... 13 10 Einstein doggo https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
633 854365224396361728 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... https://twitter.com/dog_rates/status/854365224... 13 10 Einstein floofer https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
634 854365224396361728 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... https://twitter.com/dog_rates/status/854365224... 13 10 Einstein pupper https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
635 854365224396361728 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... https://twitter.com/dog_rates/status/854365224... 13 10 Einstein puppo https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True 5159 20046
636 854120357044912130 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... https://twitter.com/dog_rates/status/854120357... 14 10 None doggo https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
637 854120357044912130 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... https://twitter.com/dog_rates/status/854120357... 14 10 None floofer https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
638 854120357044912130 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... https://twitter.com/dog_rates/status/854120357... 14 10 None pupper https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
639 854120357044912130 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... https://twitter.com/dog_rates/status/854120357... 14 10 None puppo https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True 8285 33911
640 854010172552949760 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... https://twitter.com/dog_rates/status/854010172... 11 10 None doggo https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
641 854010172552949760 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... https://twitter.com/dog_rates/status/854010172... 11 10 None floofer https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
642 854010172552949760 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... https://twitter.com/dog_rates/status/854010172... 11 10 None pupper https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
643 854010172552949760 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... https://twitter.com/dog_rates/status/854010172... 11 10 None puppo https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True 3433 17169
644 853760880890318849 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... https://twitter.com/dog_rates/status/853760880... 12 10 Alice doggo https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
645 853760880890318849 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... https://twitter.com/dog_rates/status/853760880... 12 10 Alice floofer https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
646 853760880890318849 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... https://twitter.com/dog_rates/status/853760880... 12 10 Alice pupper https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
647 853760880890318849 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... https://twitter.com/dog_rates/status/853760880... 12 10 Alice puppo https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True 6403 30414
648 853639147608842240 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... https://twitter.com/dog_rates/status/853639147... 13 10 None doggo https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
649 853639147608842240 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... https://twitter.com/dog_rates/status/853639147... 13 10 None floofer https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
650 853639147608842240 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... https://twitter.com/dog_rates/status/853639147... 13 10 None pupper https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
651 853639147608842240 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... https://twitter.com/dog_rates/status/853639147... 13 10 None puppo https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True 11265 37198
652 853299958564483072 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole doggo https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
653 853299958564483072 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole floofer https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
654 853299958564483072 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole pupper https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
655 853299958564483072 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole puppo https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False 3928 16508
656 852912242202992640 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny doggo https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
657 852912242202992640 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny floofer https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
658 852912242202992640 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny pupper https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
659 852912242202992640 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny puppo https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True 2037 9658
660 852672615818899456 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... https://twitter.com/dog_rates/status/852672615... 12 10 Aspen doggo https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
661 852672615818899456 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... https://twitter.com/dog_rates/status/852672615... 12 10 Aspen floofer https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
662 852672615818899456 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... https://twitter.com/dog_rates/status/852672615... 12 10 Aspen pupper https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
663 852672615818899456 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... https://twitter.com/dog_rates/status/852672615... 12 10 Aspen puppo https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True 2388 15939
664 852553447878664193 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... https://twitter.com/dog_rates/status/852553447... 13 10 Jarod doggo https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
665 852553447878664193 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... https://twitter.com/dog_rates/status/852553447... 13 10 Jarod floofer https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
666 852553447878664193 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... https://twitter.com/dog_rates/status/852553447... 13 10 Jarod pupper https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
667 852553447878664193 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... https://twitter.com/dog_rates/status/852553447... 13 10 Jarod puppo https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True 3885 17492
668 852311364735569921 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles doggo https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
669 852311364735569921 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles floofer https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
670 852311364735569921 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles pupper https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
671 852311364735569921 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles puppo https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False 10961 35325
672 852226086759018497 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... https://twitter.com/dog_rates/status/852226086... 14 10 General doggo https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
673 852226086759018497 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... https://twitter.com/dog_rates/status/852226086... 14 10 General floofer https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
674 852226086759018497 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... https://twitter.com/dog_rates/status/852226086... 14 10 General pupper https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
675 852226086759018497 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... https://twitter.com/dog_rates/status/852226086... 14 10 General puppo https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False 7570 21378
676 852189679701164033 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... https://twitter.com/dog_rates/status/852189679... 12 10 Sailor doggo https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
677 852189679701164033 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... https://twitter.com/dog_rates/status/852189679... 12 10 Sailor floofer https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
678 852189679701164033 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... https://twitter.com/dog_rates/status/852189679... 12 10 Sailor pupper https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
679 852189679701164033 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... https://twitter.com/dog_rates/status/852189679... 12 10 Sailor puppo https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True 1741 12217
680 851953902622658560 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... https://twitter.com/dog_rates/status/829374341... 13 10 Astrid doggo https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
681 851953902622658560 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... https://twitter.com/dog_rates/status/829374341... 13 10 Astrid floofer https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
682 851953902622658560 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... https://twitter.com/dog_rates/status/829374341... 13 10 Astrid pupper https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
683 851953902622658560 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... https://twitter.com/dog_rates/status/829374341... 13 10 Astrid puppo https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True 10706 0
684 851861385021730816 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... https://twitter.com/eddie_coe98/status/8482893... 10 10 None doggo https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
685 851861385021730816 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... https://twitter.com/eddie_coe98/status/8482893... 10 10 None floofer https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
686 851861385021730816 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... https://twitter.com/eddie_coe98/status/8482893... 10 10 None pupper https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
687 851861385021730816 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... https://twitter.com/eddie_coe98/status/8482893... 10 10 None puppo https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False 23 0
688 851591660324737024 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... https://twitter.com/dog_rates/status/851591660... 11 10 None doggo https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
689 851591660324737024 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... https://twitter.com/dog_rates/status/851591660... 11 10 None floofer https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
690 851591660324737024 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... https://twitter.com/dog_rates/status/851591660... 11 10 None pupper https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
691 851591660324737024 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... https://twitter.com/dog_rates/status/851591660... 11 10 None puppo https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True 3819 17300
692 851464819735769094 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... https://twitter.com/dog_rates/status/851464819... 14 10 Iggy doggo https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
693 851464819735769094 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... https://twitter.com/dog_rates/status/851464819... 14 10 Iggy floofer https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
694 851464819735769094 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... https://twitter.com/dog_rates/status/851464819... 14 10 Iggy pupper https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
695 851464819735769094 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... https://twitter.com/dog_rates/status/851464819... 14 10 Iggy puppo https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False 7855 25944
696 851224888060895234 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... https://twitter.com/dog_rates/status/851224888... 13 10 Snoop doggo https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
697 851224888060895234 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... https://twitter.com/dog_rates/status/851224888... 13 10 Snoop floofer https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
698 851224888060895234 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... https://twitter.com/dog_rates/status/851224888... 13 10 Snoop pupper https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
699 851224888060895234 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... https://twitter.com/dog_rates/status/851224888... 13 10 Snoop puppo https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True 6350 22090
700 850753642995093505 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... https://twitter.com/dog_rates/status/850753642... 11 10 Kyle doggo https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
701 850753642995093505 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... https://twitter.com/dog_rates/status/850753642... 11 10 Kyle floofer https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
702 850753642995093505 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... https://twitter.com/dog_rates/status/850753642... 11 10 Kyle pupper https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
703 850753642995093505 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... https://twitter.com/dog_rates/status/850753642... 11 10 Kyle puppo https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True 10352 33348
704 850380195714523136 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... https://twitter.com/dog_rates/status/850380195... 13 10 Leo doggo https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
705 850380195714523136 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... https://twitter.com/dog_rates/status/850380195... 13 10 Leo floofer https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
706 850380195714523136 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... https://twitter.com/dog_rates/status/850380195... 13 10 Leo pupper https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
707 850380195714523136 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... https://twitter.com/dog_rates/status/850380195... 13 10 Leo puppo https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True 2915 13994
708 850145622816686080 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... https://twitter.com/dog_rates/status/850145622... 11 10 Riley doggo https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
709 850145622816686080 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... https://twitter.com/dog_rates/status/850145622... 11 10 Riley floofer https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
710 850145622816686080 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... https://twitter.com/dog_rates/status/850145622... 11 10 Riley pupper https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
711 850145622816686080 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... https://twitter.com/dog_rates/status/850145622... 11 10 Riley puppo https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True 4244 17519
712 850019790995546112 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... https://twitter.com/dog_rates/status/850019790... 12 10 Boomer doggo https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
713 850019790995546112 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... https://twitter.com/dog_rates/status/850019790... 12 10 Boomer floofer https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
714 850019790995546112 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... https://twitter.com/dog_rates/status/850019790... 12 10 Boomer pupper https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
715 850019790995546112 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... https://twitter.com/dog_rates/status/850019790... 12 10 Boomer puppo https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True 5459 21944
716 849776966551130114 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... https://twitter.com/dog_rates/status/849776966... 12 10 None doggo https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
717 849776966551130114 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... https://twitter.com/dog_rates/status/849776966... 12 10 None floofer https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
718 849776966551130114 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... https://twitter.com/dog_rates/status/849776966... 12 10 None pupper https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
719 849776966551130114 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... https://twitter.com/dog_rates/status/849776966... 12 10 None puppo https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False 8404 32390
720 849412302885593088 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... https://twitter.com/dog_rates/status/849412302... 12 10 Noosh doggo https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
721 849412302885593088 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... https://twitter.com/dog_rates/status/849412302... 12 10 Noosh floofer https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
722 849412302885593088 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... https://twitter.com/dog_rates/status/849412302... 12 10 Noosh pupper https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
723 849412302885593088 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... https://twitter.com/dog_rates/status/849412302... 12 10 Noosh puppo https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True 3487 17039
724 849336543269576704 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... https://twitter.com/dog_rates/status/849336543... 11 10 None doggo https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
725 849336543269576704 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... https://twitter.com/dog_rates/status/849336543... 11 10 None floofer https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
726 849336543269576704 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... https://twitter.com/dog_rates/status/849336543... 11 10 None pupper https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
727 849336543269576704 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... https://twitter.com/dog_rates/status/849336543... 11 10 None puppo https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False 2101 12240
728 849051919805034497 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... https://twitter.com/dog_rates/status/849051919... 13 10 Kevin doggo https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
729 849051919805034497 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... https://twitter.com/dog_rates/status/849051919... 13 10 Kevin floofer https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
730 849051919805034497 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... https://twitter.com/dog_rates/status/849051919... 13 10 Kevin pupper https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
731 849051919805034497 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... https://twitter.com/dog_rates/status/849051919... 13 10 Kevin puppo https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False 7396 32617
732 848690551926992896 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... https://twitter.com/dog_rates/status/848690551... 12 10 None doggo https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
733 848690551926992896 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... https://twitter.com/dog_rates/status/848690551... 12 10 None floofer https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
734 848690551926992896 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... https://twitter.com/dog_rates/status/848690551... 12 10 None pupper https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
735 848690551926992896 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... https://twitter.com/dog_rates/status/848690551... 12 10 None puppo https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True 4826 27104
736 848324959059550208 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... https://twitter.com/dog_rates/status/848324959... 12 10 Odin doggo https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
737 848324959059550208 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... https://twitter.com/dog_rates/status/848324959... 12 10 Odin floofer https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
738 848324959059550208 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... https://twitter.com/dog_rates/status/848324959... 12 10 Odin pupper https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
739 848324959059550208 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... https://twitter.com/dog_rates/status/848324959... 12 10 Odin puppo https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True 4037 20229
740 848212111729840128 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... https://twitter.com/dog_rates/status/848212111... 6 10 Jerry doggo https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
741 848212111729840128 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... https://twitter.com/dog_rates/status/848212111... 6 10 Jerry floofer https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
742 848212111729840128 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... https://twitter.com/dog_rates/status/848212111... 6 10 Jerry pupper https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
743 848212111729840128 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... https://twitter.com/dog_rates/status/848212111... 6 10 Jerry puppo https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False 3444 17618
744 847971574464610304 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... https://twitter.com/basic_vacek_/status/847971... 13 10 None doggo https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
745 847971574464610304 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... https://twitter.com/basic_vacek_/status/847971... 13 10 None floofer https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
746 847971574464610304 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... https://twitter.com/basic_vacek_/status/847971... 13 10 None pupper https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
747 847971574464610304 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... https://twitter.com/basic_vacek_/status/847971... 13 10 None puppo https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False 482 0
748 847962785489326080 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... https://twitter.com/dog_rates/status/847962785... 10 10 Georgie doggo https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
749 847962785489326080 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... https://twitter.com/dog_rates/status/847962785... 10 10 Georgie floofer https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
750 847962785489326080 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... https://twitter.com/dog_rates/status/847962785... 10 10 Georgie pupper https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
751 847962785489326080 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... https://twitter.com/dog_rates/status/847962785... 10 10 Georgie puppo https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False 5730 25296
752 847842811428974592 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu doggo https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
753 847842811428974592 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu floofer https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
754 847842811428974592 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu pupper https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
755 847842811428974592 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu puppo https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True 1522 5935
756 847606175596138505 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... https://twitter.com/dog_rates/status/847606175... 12 10 Cannon doggo https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
757 847606175596138505 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... https://twitter.com/dog_rates/status/847606175... 12 10 Cannon floofer https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
758 847606175596138505 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... https://twitter.com/dog_rates/status/847606175... 12 10 Cannon pupper https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
759 847606175596138505 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... https://twitter.com/dog_rates/status/847606175... 12 10 Cannon puppo https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False 3774 20208
760 847251039262605312 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... https://twitter.com/dog_rates/status/847251039... 12 10 Furzey doggo https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
761 847251039262605312 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... https://twitter.com/dog_rates/status/847251039... 12 10 Furzey floofer https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
762 847251039262605312 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... https://twitter.com/dog_rates/status/847251039... 12 10 Furzey pupper https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
763 847251039262605312 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... https://twitter.com/dog_rates/status/847251039... 12 10 Furzey puppo https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True 4800 22036
764 847157206088847362 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy doggo https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
765 847157206088847362 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy floofer https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
766 847157206088847362 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy pupper https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
767 847157206088847362 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy puppo https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True 6572 21588
768 847116187444137987 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... https://twitter.com/dog_rates/status/847116187... 11 10 None doggo https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
769 847116187444137987 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... https://twitter.com/dog_rates/status/847116187... 11 10 None floofer https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
770 847116187444137987 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... https://twitter.com/dog_rates/status/847116187... 11 10 None pupper https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
771 847116187444137987 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... https://twitter.com/dog_rates/status/847116187... 11 10 None puppo https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False 3583 23108
772 846874817362120707 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... https://twitter.com/dog_rates/status/846874817... 13 10 Tuck doggo https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
773 846874817362120707 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... https://twitter.com/dog_rates/status/846874817... 13 10 Tuck floofer https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
774 846874817362120707 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... https://twitter.com/dog_rates/status/846874817... 13 10 Tuck pupper https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
775 846874817362120707 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... https://twitter.com/dog_rates/status/846874817... 13 10 Tuck puppo https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True 4404 21685
776 846514051647705089 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... https://twitter.com/dog_rates/status/846514051... 13 10 Barney doggo https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
777 846514051647705089 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... https://twitter.com/dog_rates/status/846514051... 13 10 Barney floofer https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
778 846514051647705089 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... https://twitter.com/dog_rates/status/846514051... 13 10 Barney pupper https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
779 846514051647705089 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... https://twitter.com/dog_rates/status/846514051... 13 10 Barney puppo https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True 13076 48410
780 846153765933735936 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... https://twitter.com/dog_rates/status/846153765... 13 10 Vixen doggo https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
781 846153765933735936 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... https://twitter.com/dog_rates/status/846153765... 13 10 Vixen floofer https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
782 846153765933735936 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... https://twitter.com/dog_rates/status/846153765... 13 10 Vixen pupper https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
783 846153765933735936 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... https://twitter.com/dog_rates/status/846153765... 13 10 Vixen puppo https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True 10226 34394
784 846042936437604353 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis doggo https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
785 846042936437604353 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis floofer https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
786 846042936437604353 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis pupper https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
787 846042936437604353 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis puppo https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True 3224 17256
788 845812042753855489 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... https://twitter.com/dog_rates/status/845812042... 13 10 None doggo https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
789 845812042753855489 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... https://twitter.com/dog_rates/status/845812042... 13 10 None floofer https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
790 845812042753855489 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... https://twitter.com/dog_rates/status/845812042... 13 10 None pupper https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
791 845812042753855489 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... https://twitter.com/dog_rates/status/845812042... 13 10 None puppo https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False 9894 31737
792 845677943972139009 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... https://twitter.com/dog_rates/status/845677943... 12 10 None doggo https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
793 845677943972139009 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... https://twitter.com/dog_rates/status/845677943... 12 10 None floofer https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
794 845677943972139009 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... https://twitter.com/dog_rates/status/845677943... 12 10 None pupper https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
795 845677943972139009 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... https://twitter.com/dog_rates/status/845677943... 12 10 None puppo https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True 5365 27154
796 845397057150107648 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa doggo https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
797 845397057150107648 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa floofer https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
798 845397057150107648 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa pupper https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
799 845397057150107648 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa puppo https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True 2072 8241
800 845306882940190720 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... https://twitter.com/dog_rates/status/845306882... 12 10 Pickles doggo https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
801 845306882940190720 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... https://twitter.com/dog_rates/status/845306882... 12 10 Pickles floofer https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
802 845306882940190720 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... https://twitter.com/dog_rates/status/845306882... 12 10 Pickles pupper https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
803 845306882940190720 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... https://twitter.com/dog_rates/status/845306882... 12 10 Pickles puppo https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True 6039 25225
804 844979544864018432 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... https://twitter.com/dog_rates/status/844979544... 13 10 None doggo https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
805 844979544864018432 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... https://twitter.com/dog_rates/status/844979544... 13 10 None floofer https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
806 844979544864018432 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... https://twitter.com/dog_rates/status/844979544... 13 10 None pupper https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
807 844979544864018432 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... https://twitter.com/dog_rates/status/844979544... 13 10 None puppo https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True 2909 14738
808 844973813909606400 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... https://twitter.com/dog_rates/status/844973813... 12 10 Brady doggo https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
809 844973813909606400 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... https://twitter.com/dog_rates/status/844973813... 12 10 Brady floofer https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
810 844973813909606400 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... https://twitter.com/dog_rates/status/844973813... 12 10 Brady pupper https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
811 844973813909606400 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... https://twitter.com/dog_rates/status/844973813... 12 10 Brady puppo https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True 3617 16361
812 844704788403113984 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... https://twitter.com/dog_rates/status/844704788... 13 10 Luna doggo https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
813 844704788403113984 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... https://twitter.com/dog_rates/status/844704788... 13 10 Luna floofer https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
814 844704788403113984 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... https://twitter.com/dog_rates/status/844704788... 13 10 Luna pupper https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
815 844704788403113984 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... https://twitter.com/dog_rates/status/844704788... 13 10 Luna puppo https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True 11633 42022
816 844580511645339650 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... https://twitter.com/dog_rates/status/844580511... 11 10 Charlie doggo https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
817 844580511645339650 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... https://twitter.com/dog_rates/status/844580511... 11 10 Charlie floofer https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
818 844580511645339650 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... https://twitter.com/dog_rates/status/844580511... 11 10 Charlie pupper https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
819 844580511645339650 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... https://twitter.com/dog_rates/status/844580511... 11 10 Charlie puppo https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False 3533 17871
820 844223788422217728 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... https://twitter.com/dog_rates/status/844223788... 12 10 Margo doggo https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
821 844223788422217728 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... https://twitter.com/dog_rates/status/844223788... 12 10 Margo floofer https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
822 844223788422217728 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... https://twitter.com/dog_rates/status/844223788... 12 10 Margo pupper https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
823 844223788422217728 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... https://twitter.com/dog_rates/status/844223788... 12 10 Margo puppo https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True 2450 14753
824 843856843873095681 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... https://twitter.com/dog_rates/status/843856843... 12 10 Sadie doggo https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
825 843856843873095681 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... https://twitter.com/dog_rates/status/843856843... 12 10 Sadie floofer https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
826 843856843873095681 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... https://twitter.com/dog_rates/status/843856843... 12 10 Sadie pupper https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
827 843856843873095681 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... https://twitter.com/dog_rates/status/843856843... 12 10 Sadie puppo https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True 5220 23211
828 843604394117681152 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... https://twitter.com/dog_rates/status/843604394... 11 10 Hank doggo https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
829 843604394117681152 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... https://twitter.com/dog_rates/status/843604394... 11 10 Hank floofer https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
830 843604394117681152 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... https://twitter.com/dog_rates/status/843604394... 11 10 Hank pupper https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
831 843604394117681152 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... https://twitter.com/dog_rates/status/843604394... 11 10 Hank puppo https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True 3081 18310
832 843235543001513987 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... https://twitter.com/dog_rates/status/843235543... 13 10 Tycho doggo https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
833 843235543001513987 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... https://twitter.com/dog_rates/status/843235543... 13 10 Tycho floofer https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
834 843235543001513987 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... https://twitter.com/dog_rates/status/843235543... 13 10 Tycho pupper https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
835 843235543001513987 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... https://twitter.com/dog_rates/status/843235543... 13 10 Tycho puppo https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True 6852 23315
836 842892208864923648 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... https://twitter.com/dog_rates/status/807106840... 13 10 Stephan doggo https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
837 842892208864923648 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... https://twitter.com/dog_rates/status/807106840... 13 10 Stephan floofer https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
838 842892208864923648 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... https://twitter.com/dog_rates/status/807106840... 13 10 Stephan pupper https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
839 842892208864923648 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... https://twitter.com/dog_rates/status/807106840... 13 10 Stephan puppo https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True 56625 0
840 842846295480000512 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... https://twitter.com/dog_rates/status/842846295... 13 10 Charlie doggo https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
841 842846295480000512 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... https://twitter.com/dog_rates/status/842846295... 13 10 Charlie floofer https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
842 842846295480000512 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... https://twitter.com/dog_rates/status/842846295... 13 10 Charlie pupper https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
843 842846295480000512 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... https://twitter.com/dog_rates/status/842846295... 13 10 Charlie puppo https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True 4023 16440
844 842765311967449089 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... https://www.gofundme.com/get-indie-home/,https... 12 10 Indie doggo https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
845 842765311967449089 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... https://www.gofundme.com/get-indie-home/,https... 12 10 Indie floofer https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
846 842765311967449089 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... https://www.gofundme.com/get-indie-home/,https... 12 10 Indie pupper https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
847 842765311967449089 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... https://www.gofundme.com/get-indie-home/,https... 12 10 Indie puppo https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True 1439 7321
848 842535590457499648 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... https://twitter.com/dog_rates/status/842535590... 13 10 Winnie doggo https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
849 842535590457499648 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... https://twitter.com/dog_rates/status/842535590... 13 10 Winnie floofer https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
850 842535590457499648 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... https://twitter.com/dog_rates/status/842535590... 13 10 Winnie pupper https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
851 842535590457499648 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... https://twitter.com/dog_rates/status/842535590... 13 10 Winnie puppo https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True 3937 19637
852 842163532590374912 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... https://twitter.com/dog_rates/status/842163532... 12 10 George doggo https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
853 842163532590374912 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... https://twitter.com/dog_rates/status/842163532... 12 10 George floofer https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
854 842163532590374912 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... https://twitter.com/dog_rates/status/842163532... 12 10 George pupper https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
855 842163532590374912 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... https://twitter.com/dog_rates/status/842163532... 12 10 George puppo https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True 6568 26569
856 842115215311396866 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... https://twitter.com/dog_rates/status/842115215... 12 10 Bentley doggo https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
857 842115215311396866 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... https://twitter.com/dog_rates/status/842115215... 12 10 Bentley floofer https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
858 842115215311396866 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... https://twitter.com/dog_rates/status/842115215... 12 10 Bentley pupper https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
859 842115215311396866 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... https://twitter.com/dog_rates/status/842115215... 12 10 Bentley puppo https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True 3386 15204
860 841833993020538882 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... https://twitter.com/dog_rates/status/817423860... 13 10 Ken doggo https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
861 841833993020538882 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... https://twitter.com/dog_rates/status/817423860... 13 10 Ken floofer https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
862 841833993020538882 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... https://twitter.com/dog_rates/status/817423860... 13 10 Ken pupper https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
863 841833993020538882 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... https://twitter.com/dog_rates/status/817423860... 13 10 Ken puppo https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True 17504 0
864 841680585030541313 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... https://twitter.com/dog_rates/status/841680585... 12 10 Penny doggo https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
865 841680585030541313 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... https://twitter.com/dog_rates/status/841680585... 12 10 Penny floofer https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
866 841680585030541313 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... https://twitter.com/dog_rates/status/841680585... 12 10 Penny pupper https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
867 841680585030541313 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... https://twitter.com/dog_rates/status/841680585... 12 10 Penny puppo https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True 8748 27854
868 841439858740625411 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... https://twitter.com/dog_rates/status/841439858... 14 10 None doggo https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
869 841439858740625411 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... https://twitter.com/dog_rates/status/841439858... 14 10 None floofer https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
870 841439858740625411 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... https://twitter.com/dog_rates/status/841439858... 14 10 None pupper https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
871 841439858740625411 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... https://twitter.com/dog_rates/status/841439858... 14 10 None puppo https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True 4168 13755
872 841314665196081154 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... https://twitter.com/dog_rates/status/841314665... 13 10 Max doggo https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
873 841314665196081154 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... https://twitter.com/dog_rates/status/841314665... 13 10 Max floofer https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
874 841314665196081154 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... https://twitter.com/dog_rates/status/841314665... 13 10 Max pupper https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
875 841314665196081154 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... https://twitter.com/dog_rates/status/841314665... 13 10 Max puppo https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True 5312 17305
876 841077006473256960 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... https://twitter.com/dog_rates/status/841077006... 12 10 Dawn doggo https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
877 841077006473256960 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... https://twitter.com/dog_rates/status/841077006... 12 10 Dawn floofer https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
878 841077006473256960 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... https://twitter.com/dog_rates/status/841077006... 12 10 Dawn pupper https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
879 841077006473256960 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... https://twitter.com/dog_rates/status/841077006... 12 10 Dawn puppo https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True 5991 24926
880 840696689258311684 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... https://twitter.com/dog_rates/status/840696689... 10 10 None doggo https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
881 840696689258311684 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... https://twitter.com/dog_rates/status/840696689... 10 10 None floofer https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
882 840696689258311684 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... https://twitter.com/dog_rates/status/840696689... 10 10 None pupper https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
883 840696689258311684 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... https://twitter.com/dog_rates/status/840696689... 10 10 None puppo https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False 1116 13377
884 840632337062862849 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie doggo https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
885 840632337062862849 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie floofer https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
886 840632337062862849 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie pupper https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
887 840632337062862849 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie puppo https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True 1972 9761
888 840370681858686976 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... https://twitter.com/dog_rates/status/840370681... 13 10 None doggo https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
889 840370681858686976 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... https://twitter.com/dog_rates/status/840370681... 13 10 None floofer https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
890 840370681858686976 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... https://twitter.com/dog_rates/status/840370681... 13 10 None pupper https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
891 840370681858686976 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... https://twitter.com/dog_rates/status/840370681... 13 10 None puppo https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False 5146 17918
892 840268004936019968 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... https://twitter.com/dog_rates/status/840268004... 12 10 Monty doggo https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
893 840268004936019968 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... https://twitter.com/dog_rates/status/840268004... 12 10 Monty floofer https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
894 840268004936019968 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... https://twitter.com/dog_rates/status/840268004... 12 10 Monty pupper https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
895 840268004936019968 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... https://twitter.com/dog_rates/status/840268004... 12 10 Monty puppo https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True 6497 20950
896 839990271299457024 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner doggo https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
897 839990271299457024 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner floofer https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
898 839990271299457024 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner pupper https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
899 839990271299457024 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner puppo https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True 2597 14640
900 839549326359670784 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... https://twitter.com/dog_rates/status/839549326... 12 10 Winston doggo https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
901 839549326359670784 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... https://twitter.com/dog_rates/status/839549326... 12 10 Winston floofer https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
902 839549326359670784 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... https://twitter.com/dog_rates/status/839549326... 12 10 Winston pupper https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
903 839549326359670784 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... https://twitter.com/dog_rates/status/839549326... 12 10 Winston puppo https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True 8805 29957
904 839290600511926273 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... https://twitter.com/alexmartindawg/status/8392... 10 10 None doggo https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
905 839290600511926273 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... https://twitter.com/alexmartindawg/status/8392... 10 10 None floofer https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
906 839290600511926273 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... https://twitter.com/alexmartindawg/status/8392... 10 10 None pupper https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
907 839290600511926273 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... https://twitter.com/alexmartindawg/status/8392... 10 10 None puppo https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False 158 0
908 839239871831150596 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... https://twitter.com/dog_rates/status/839239871... 13 10 Odie doggo https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
909 839239871831150596 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... https://twitter.com/dog_rates/status/839239871... 13 10 Odie floofer https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
910 839239871831150596 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... https://twitter.com/dog_rates/status/839239871... 13 10 Odie pupper https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
911 839239871831150596 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... https://twitter.com/dog_rates/status/839239871... 13 10 Odie puppo https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True 7422 29684
912 838921590096166913 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... https://twitter.com/dog_rates/status/838921590... 13 10 Arlo doggo https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
913 838921590096166913 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... https://twitter.com/dog_rates/status/838921590... 13 10 Arlo floofer https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
914 838921590096166913 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... https://twitter.com/dog_rates/status/838921590... 13 10 Arlo pupper https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
915 838921590096166913 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... https://twitter.com/dog_rates/status/838921590... 13 10 Arlo puppo https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True 2357 12183
916 838916489579200512 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... https://twitter.com/KibaDva/status/83890598062... 15 10 None doggo https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
917 838916489579200512 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... https://twitter.com/KibaDva/status/83890598062... 15 10 None floofer https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
918 838916489579200512 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... https://twitter.com/KibaDva/status/83890598062... 15 10 None pupper https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
919 838916489579200512 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... https://twitter.com/KibaDva/status/83890598062... 15 10 None puppo https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False 38 0
920 838561493054533637 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... https://twitter.com/dog_rates/status/838561493... 13 10 Walter doggo https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
921 838561493054533637 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... https://twitter.com/dog_rates/status/838561493... 13 10 Walter floofer https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
922 838561493054533637 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... https://twitter.com/dog_rates/status/838561493... 13 10 Walter pupper https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
923 838561493054533637 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... https://twitter.com/dog_rates/status/838561493... 13 10 Walter puppo https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True 1504 11892
924 838476387338051585 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... https://twitter.com/dog_rates/status/838476387... 13 10 Stanley doggo https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
925 838476387338051585 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... https://twitter.com/dog_rates/status/838476387... 13 10 Stanley floofer https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
926 838476387338051585 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... https://twitter.com/dog_rates/status/838476387... 13 10 Stanley pupper https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
927 838476387338051585 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... https://twitter.com/dog_rates/status/838476387... 13 10 Stanley puppo https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True 5484 24664
928 838083903487373313 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... https://twitter.com/dog_rates/status/838083903... 13 10 Daisy doggo https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
929 838083903487373313 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... https://twitter.com/dog_rates/status/838083903... 13 10 Daisy floofer https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
930 838083903487373313 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... https://twitter.com/dog_rates/status/838083903... 13 10 Daisy pupper https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
931 838083903487373313 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... https://twitter.com/dog_rates/status/838083903... 13 10 Daisy puppo https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True 3582 19183
932 837820167694528512 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... https://twitter.com/dog_rates/status/837820167... 12 10 None doggo https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
933 837820167694528512 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... https://twitter.com/dog_rates/status/837820167... 12 10 None floofer https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
934 837820167694528512 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... https://twitter.com/dog_rates/status/837820167... 12 10 None pupper https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
935 837820167694528512 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... https://twitter.com/dog_rates/status/837820167... 12 10 None puppo https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True 8952 37277
936 837482249356513284 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... https://twitter.com/dog_rates/status/837482249... 13 10 Waffles doggo https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
937 837482249356513284 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... https://twitter.com/dog_rates/status/837482249... 13 10 Waffles floofer https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
938 837482249356513284 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... https://twitter.com/dog_rates/status/837482249... 13 10 Waffles pupper https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
939 837482249356513284 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... https://twitter.com/dog_rates/status/837482249... 13 10 Waffles puppo https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False 495 4204
940 837471256429613056 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... https://twitter.com/dog_rates/status/837471256... 12 10 Vincent doggo https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
941 837471256429613056 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... https://twitter.com/dog_rates/status/837471256... 12 10 Vincent floofer https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
942 837471256429613056 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... https://twitter.com/dog_rates/status/837471256... 12 10 Vincent pupper https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
943 837471256429613056 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... https://twitter.com/dog_rates/status/837471256... 12 10 Vincent puppo https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False 2631 13967
944 837366284874571778 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... https://twitter.com/dog_rates/status/837366284... 13 10 Lucy doggo https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
945 837366284874571778 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... https://twitter.com/dog_rates/status/837366284... 13 10 Lucy floofer https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
946 837366284874571778 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... https://twitter.com/dog_rates/status/837366284... 13 10 Lucy pupper https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
947 837366284874571778 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... https://twitter.com/dog_rates/status/837366284... 13 10 Lucy puppo https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True 6005 23074
948 837110210464448512 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... https://twitter.com/dog_rates/status/837110210... 13 10 Clark doggo https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
949 837110210464448512 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... https://twitter.com/dog_rates/status/837110210... 13 10 Clark floofer https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
950 837110210464448512 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... https://twitter.com/dog_rates/status/837110210... 13 10 Clark pupper https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
951 837110210464448512 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... https://twitter.com/dog_rates/status/837110210... 13 10 Clark puppo https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True 2731 17480
952 837012587749474308 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... https://twitter.com/KennyFromDaBlok/status/837... 14 10 None doggo https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
953 837012587749474308 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... https://twitter.com/KennyFromDaBlok/status/837... 14 10 None floofer https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
954 837012587749474308 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... https://twitter.com/KennyFromDaBlok/status/837... 14 10 None pupper https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
955 837012587749474308 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... https://twitter.com/KennyFromDaBlok/status/837... 14 10 None puppo https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False 88 0
956 836989968035819520 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... https://twitter.com/dog_rates/status/836989968... 12 10 Mookie doggo https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
957 836989968035819520 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... https://twitter.com/dog_rates/status/836989968... 12 10 Mookie floofer https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
958 836989968035819520 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... https://twitter.com/dog_rates/status/836989968... 12 10 Mookie pupper https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
959 836989968035819520 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... https://twitter.com/dog_rates/status/836989968... 12 10 Mookie puppo https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True 2610 13879
960 836753516572119041 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... https://twitter.com/dog_rates/status/836753516... 12 10 Meera doggo https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
961 836753516572119041 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... https://twitter.com/dog_rates/status/836753516... 12 10 Meera floofer https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
962 836753516572119041 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... https://twitter.com/dog_rates/status/836753516... 12 10 Meera pupper https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
963 836753516572119041 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... https://twitter.com/dog_rates/status/836753516... 12 10 Meera puppo https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True 5237 21029
964 836677758902222849 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... https://twitter.com/dog_rates/status/836677758... 11 10 Oliver doggo https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
965 836677758902222849 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... https://twitter.com/dog_rates/status/836677758... 11 10 Oliver floofer https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
966 836677758902222849 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... https://twitter.com/dog_rates/status/836677758... 11 10 Oliver pupper https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
967 836677758902222849 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... https://twitter.com/dog_rates/status/836677758... 11 10 Oliver puppo https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False 2522 13782
968 836380477523124226 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... https://twitter.com/dog_rates/status/836380477... 12 10 Ava doggo https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
969 836380477523124226 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... https://twitter.com/dog_rates/status/836380477... 12 10 Ava floofer https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
970 836380477523124226 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... https://twitter.com/dog_rates/status/836380477... 12 10 Ava pupper https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
971 836380477523124226 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... https://twitter.com/dog_rates/status/836380477... 12 10 Ava puppo https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False 3337 16037
972 836260088725786625 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... https://twitter.com/dog_rates/status/836260088... 13 10 Lucy doggo https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
973 836260088725786625 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... https://twitter.com/dog_rates/status/836260088... 13 10 Lucy floofer https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
974 836260088725786625 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... https://twitter.com/dog_rates/status/836260088... 13 10 Lucy pupper https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
975 836260088725786625 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... https://twitter.com/dog_rates/status/836260088... 13 10 Lucy puppo https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True 4850 23177
976 836001077879255040 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... https://twitter.com/dog_rates/status/836001077... 13 10 None doggo https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
977 836001077879255040 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... https://twitter.com/dog_rates/status/836001077... 13 10 None floofer https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
978 836001077879255040 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... https://twitter.com/dog_rates/status/836001077... 13 10 None pupper https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
979 836001077879255040 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... https://twitter.com/dog_rates/status/836001077... 13 10 None puppo https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True 4935 20924
980 835574547218894849 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... https://twitter.com/dog_rates/status/835574547... 11 10 Eli doggo https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
981 835574547218894849 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... https://twitter.com/dog_rates/status/835574547... 11 10 Eli floofer https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
982 835574547218894849 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... https://twitter.com/dog_rates/status/835574547... 11 10 Eli pupper https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
983 835574547218894849 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... https://twitter.com/dog_rates/status/835574547... 11 10 Eli puppo https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True 4121 19447
984 835297930240217089 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... https://twitter.com/dog_rates/status/835297930... 12 10 Ash doggo https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
985 835297930240217089 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... https://twitter.com/dog_rates/status/835297930... 12 10 Ash floofer https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
986 835297930240217089 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... https://twitter.com/dog_rates/status/835297930... 12 10 Ash pupper https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
987 835297930240217089 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... https://twitter.com/dog_rates/status/835297930... 12 10 Ash puppo https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True 3381 17847
988 835264098648616962 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola doggo https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
989 835264098648616962 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola floofer https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
990 835264098648616962 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola pupper https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
991 835264098648616962 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola puppo https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False 1939 8503
992 835172783151792128 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... https://twitter.com/dog_rates/status/835172783... 12 10 None doggo https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
993 835172783151792128 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... https://twitter.com/dog_rates/status/835172783... 12 10 None floofer https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
994 835172783151792128 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... https://twitter.com/dog_rates/status/835172783... 12 10 None pupper https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
995 835172783151792128 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... https://twitter.com/dog_rates/status/835172783... 12 10 None puppo https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True 6516 28552
996 835152434251116546 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... https://twitter.com/dog_rates/status/835152434... 0 10 None doggo https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
997 835152434251116546 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... https://twitter.com/dog_rates/status/835152434... 0 10 None floofer https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
998 835152434251116546 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... https://twitter.com/dog_rates/status/835152434... 0 10 None pupper https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
999 835152434251116546 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... https://twitter.com/dog_rates/status/835152434... 0 10 None puppo https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True 3443 24574
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
7292 670679630144274432 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... https://twitter.com/dog_rates/status/670679630... 8 10 Pluto doggo https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7293 670679630144274432 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... https://twitter.com/dog_rates/status/670679630... 8 10 Pluto floofer https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7294 670679630144274432 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... https://twitter.com/dog_rates/status/670679630... 8 10 Pluto pupper https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7295 670679630144274432 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... https://twitter.com/dog_rates/status/670679630... 8 10 Pluto puppo https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True 315 799
7296 670676092097810432 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... https://twitter.com/dog_rates/status/670676092... 8 10 Bloo doggo https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7297 670676092097810432 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... https://twitter.com/dog_rates/status/670676092... 8 10 Bloo floofer https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7298 670676092097810432 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... https://twitter.com/dog_rates/status/670676092... 8 10 Bloo pupper https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7299 670676092097810432 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... https://twitter.com/dog_rates/status/670676092... 8 10 Bloo puppo https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True 45 267
7300 670668383499735048 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... https://twitter.com/dog_rates/status/670668383... 10 10 Phineas doggo https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7301 670668383499735048 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... https://twitter.com/dog_rates/status/670668383... 10 10 Phineas floofer https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7302 670668383499735048 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... https://twitter.com/dog_rates/status/670668383... 10 10 Phineas pupper https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7303 670668383499735048 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... https://twitter.com/dog_rates/status/670668383... 10 10 Phineas puppo https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False 5537 11452
7304 670474236058800128 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... https://twitter.com/dog_rates/status/670474236... 10 10 None doggo https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7305 670474236058800128 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... https://twitter.com/dog_rates/status/670474236... 10 10 None floofer https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7306 670474236058800128 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... https://twitter.com/dog_rates/status/670474236... 10 10 None pupper https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7307 670474236058800128 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... https://twitter.com/dog_rates/status/670474236... 10 10 None puppo https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False 835 1635
7308 670468609693655041 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... https://twitter.com/dog_rates/status/670468609... 10 10 Edd doggo https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7309 670468609693655041 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... https://twitter.com/dog_rates/status/670468609... 10 10 Edd floofer https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7310 670468609693655041 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... https://twitter.com/dog_rates/status/670468609... 10 10 Edd pupper https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7311 670468609693655041 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... https://twitter.com/dog_rates/status/670468609... 10 10 Edd puppo https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False 90 375
7312 670465786746662913 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... https://twitter.com/dog_rates/status/670465786... 7 10 None doggo https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7313 670465786746662913 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... https://twitter.com/dog_rates/status/670465786... 7 10 None floofer https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7314 670465786746662913 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... https://twitter.com/dog_rates/status/670465786... 7 10 None pupper https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7315 670465786746662913 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... https://twitter.com/dog_rates/status/670465786... 7 10 None puppo https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False 608 1048
7316 670452855871037440 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... https://twitter.com/dog_rates/status/670452855... 11 10 None doggo https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7317 670452855871037440 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... https://twitter.com/dog_rates/status/670452855... 11 10 None floofer https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7318 670452855871037440 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... https://twitter.com/dog_rates/status/670452855... 11 10 None pupper https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7319 670452855871037440 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... https://twitter.com/dog_rates/status/670452855... 11 10 None puppo https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True 225 580
7320 670449342516494336 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... https://twitter.com/dog_rates/status/670449342... 5 10 None doggo https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7321 670449342516494336 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... https://twitter.com/dog_rates/status/670449342... 5 10 None floofer https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7322 670449342516494336 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... https://twitter.com/dog_rates/status/670449342... 5 10 None pupper https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7323 670449342516494336 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... https://twitter.com/dog_rates/status/670449342... 5 10 None puppo https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False 729 1264
7324 670444955656130560 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... https://twitter.com/dog_rates/status/670444955... 10 10 Paull doggo https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7325 670444955656130560 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... https://twitter.com/dog_rates/status/670444955... 10 10 Paull floofer https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7326 670444955656130560 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... https://twitter.com/dog_rates/status/670444955... 10 10 Paull pupper https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7327 670444955656130560 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... https://twitter.com/dog_rates/status/670444955... 10 10 Paull puppo https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True 2153 7120
7328 670442337873600512 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... https://twitter.com/dog_rates/status/670442337... 11 10 Koda doggo https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7329 670442337873600512 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... https://twitter.com/dog_rates/status/670442337... 11 10 Koda floofer https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7330 670442337873600512 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... https://twitter.com/dog_rates/status/670442337... 11 10 Koda pupper https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7331 670442337873600512 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... https://twitter.com/dog_rates/status/670442337... 11 10 Koda puppo https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True 213 690
7332 670435821946826752 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... https://twitter.com/dog_rates/status/670435821... 10 10 None doggo https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7333 670435821946826752 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... https://twitter.com/dog_rates/status/670435821... 10 10 None floofer https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7334 670435821946826752 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... https://twitter.com/dog_rates/status/670435821... 10 10 None pupper https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7335 670435821946826752 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... https://twitter.com/dog_rates/status/670435821... 10 10 None puppo https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True 570 1127
7336 670434127938719744 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... https://twitter.com/dog_rates/status/670434127... 11 10 Hank doggo https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7337 670434127938719744 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... https://twitter.com/dog_rates/status/670434127... 11 10 Hank floofer https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7338 670434127938719744 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... https://twitter.com/dog_rates/status/670434127... 11 10 Hank pupper https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7339 670434127938719744 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... https://twitter.com/dog_rates/status/670434127... 11 10 Hank puppo https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True 708 1501
7340 670433248821026816 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... https://twitter.com/dog_rates/status/670433248... 10 10 Sam doggo https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7341 670433248821026816 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... https://twitter.com/dog_rates/status/670433248... 10 10 Sam floofer https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7342 670433248821026816 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... https://twitter.com/dog_rates/status/670433248... 10 10 Sam pupper https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7343 670433248821026816 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... https://twitter.com/dog_rates/status/670433248... 10 10 Sam puppo https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False 122 345
7344 670428280563085312 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... https://twitter.com/dog_rates/status/670428280... 11 10 Willy doggo https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7345 670428280563085312 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... https://twitter.com/dog_rates/status/670428280... 11 10 Willy floofer https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7346 670428280563085312 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... https://twitter.com/dog_rates/status/670428280... 11 10 Willy pupper https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7347 670428280563085312 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... https://twitter.com/dog_rates/status/670428280... 11 10 Willy puppo https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True 694 1484
7348 670427002554466305 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... https://twitter.com/dog_rates/status/670427002... 9 10 a doggo https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7349 670427002554466305 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... https://twitter.com/dog_rates/status/670427002... 9 10 a floofer https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7350 670427002554466305 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... https://twitter.com/dog_rates/status/670427002... 9 10 a pupper https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7351 670427002554466305 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... https://twitter.com/dog_rates/status/670427002... 9 10 a puppo https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True 179 551
7352 670421925039075328 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 https://twitter.com/dog_rates/status/670421925... 12 10 Herb doggo https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7353 670421925039075328 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 https://twitter.com/dog_rates/status/670421925... 12 10 Herb floofer https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7354 670421925039075328 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 https://twitter.com/dog_rates/status/670421925... 12 10 Herb pupper https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7355 670421925039075328 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 https://twitter.com/dog_rates/status/670421925... 12 10 Herb puppo https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False 709 1415
7356 670420569653809152 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... https://twitter.com/dog_rates/status/670420569... 10 10 Damon doggo https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7357 670420569653809152 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... https://twitter.com/dog_rates/status/670420569... 10 10 Damon floofer https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7358 670420569653809152 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... https://twitter.com/dog_rates/status/670420569... 10 10 Damon pupper https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7359 670420569653809152 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... https://twitter.com/dog_rates/status/670420569... 10 10 Damon puppo https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False 342 668
7360 670417414769758208 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... https://twitter.com/dog_rates/status/670417414... 6 10 None doggo https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7361 670417414769758208 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... https://twitter.com/dog_rates/status/670417414... 6 10 None floofer https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7362 670417414769758208 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... https://twitter.com/dog_rates/status/670417414... 6 10 None pupper https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7363 670417414769758208 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... https://twitter.com/dog_rates/status/670417414... 6 10 None puppo https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False 350 604
7364 670411370698022913 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... https://twitter.com/dog_rates/status/670411370... 12 10 Scooter doggo https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7365 670411370698022913 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... https://twitter.com/dog_rates/status/670411370... 12 10 Scooter floofer https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7366 670411370698022913 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... https://twitter.com/dog_rates/status/670411370... 12 10 Scooter pupper https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7367 670411370698022913 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... https://twitter.com/dog_rates/status/670411370... 12 10 Scooter puppo https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True 991 2176
7368 670408998013820928 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... https://twitter.com/dog_rates/status/670408998... 10 10 Peanut doggo https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7369 670408998013820928 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... https://twitter.com/dog_rates/status/670408998... 10 10 Peanut floofer https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7370 670408998013820928 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... https://twitter.com/dog_rates/status/670408998... 10 10 Peanut pupper https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7371 670408998013820928 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... https://twitter.com/dog_rates/status/670408998... 10 10 Peanut puppo https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False 249 600
7372 670403879788544000 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... https://twitter.com/dog_rates/status/670403879... 10 10 Nigel doggo https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7373 670403879788544000 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... https://twitter.com/dog_rates/status/670403879... 10 10 Nigel floofer https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7374 670403879788544000 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... https://twitter.com/dog_rates/status/670403879... 10 10 Nigel pupper https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7375 670403879788544000 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... https://twitter.com/dog_rates/status/670403879... 10 10 Nigel puppo https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True 173 460
7376 670385711116361728 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... https://twitter.com/dog_rates/status/670385711... 8 10 Larry doggo https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7377 670385711116361728 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... https://twitter.com/dog_rates/status/670385711... 8 10 Larry floofer https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7378 670385711116361728 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... https://twitter.com/dog_rates/status/670385711... 8 10 Larry pupper https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7379 670385711116361728 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... https://twitter.com/dog_rates/status/670385711... 8 10 Larry puppo https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True 234 593
7380 670374371102445568 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... https://twitter.com/dog_rates/status/670374371... 12 10 Daisy doggo https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7381 670374371102445568 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... https://twitter.com/dog_rates/status/670374371... 12 10 Daisy floofer https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7382 670374371102445568 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... https://twitter.com/dog_rates/status/670374371... 12 10 Daisy pupper https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7383 670374371102445568 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... https://twitter.com/dog_rates/status/670374371... 12 10 Daisy puppo https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True 295 785
7384 670361874861563904 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... https://twitter.com/dog_rates/status/670361874... 9 10 a doggo https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7385 670361874861563904 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... https://twitter.com/dog_rates/status/670361874... 9 10 a floofer https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7386 670361874861563904 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... https://twitter.com/dog_rates/status/670361874... 9 10 a pupper https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7387 670361874861563904 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... https://twitter.com/dog_rates/status/670361874... 9 10 a puppo https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False 71 344
7388 670338931251150849 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... https://twitter.com/dog_rates/status/670338931... 10 10 Butters doggo https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7389 670338931251150849 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... https://twitter.com/dog_rates/status/670338931... 10 10 Butters floofer https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7390 670338931251150849 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... https://twitter.com/dog_rates/status/670338931... 10 10 Butters pupper https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7391 670338931251150849 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... https://twitter.com/dog_rates/status/670338931... 10 10 Butters puppo https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True 122 451
7392 670319130621435904 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... https://twitter.com/dog_rates/status/670319130... 11 10 None doggo https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7393 670319130621435904 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... https://twitter.com/dog_rates/status/670319130... 11 10 None floofer https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7394 670319130621435904 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... https://twitter.com/dog_rates/status/670319130... 11 10 None pupper https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7395 670319130621435904 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... https://twitter.com/dog_rates/status/670319130... 11 10 None puppo https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True 1359 4110
7396 670303360680108032 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... https://twitter.com/dog_rates/status/670303360... 9 10 a doggo https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7397 670303360680108032 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... https://twitter.com/dog_rates/status/670303360... 9 10 a floofer https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7398 670303360680108032 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... https://twitter.com/dog_rates/status/670303360... 9 10 a pupper https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7399 670303360680108032 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... https://twitter.com/dog_rates/status/670303360... 9 10 a puppo https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False 151 452
7400 670290420111441920 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... https://twitter.com/dog_rates/status/670290420... 11 10 Sandra doggo https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7401 670290420111441920 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... https://twitter.com/dog_rates/status/670290420... 11 10 Sandra floofer https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7402 670290420111441920 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... https://twitter.com/dog_rates/status/670290420... 11 10 Sandra pupper https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7403 670290420111441920 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... https://twitter.com/dog_rates/status/670290420... 11 10 Sandra puppo https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True 315 750
7404 670093938074779648 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... https://twitter.com/dog_rates/status/670093938... 9 10 Wally doggo https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7405 670093938074779648 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... https://twitter.com/dog_rates/status/670093938... 9 10 Wally floofer https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7406 670093938074779648 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... https://twitter.com/dog_rates/status/670093938... 9 10 Wally pupper https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7407 670093938074779648 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... https://twitter.com/dog_rates/status/670093938... 9 10 Wally puppo https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True 365 1106
7408 670086499208155136 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... https://twitter.com/dog_rates/status/670086499... 10 10 None doggo https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7409 670086499208155136 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... https://twitter.com/dog_rates/status/670086499... 10 10 None floofer https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7410 670086499208155136 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... https://twitter.com/dog_rates/status/670086499... 10 10 None pupper https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7411 670086499208155136 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... https://twitter.com/dog_rates/status/670086499... 10 10 None puppo https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True 275 740
7412 670079681849372674 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... https://twitter.com/dog_rates/status/670079681... 10 10 Fabio doggo https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7413 670079681849372674 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... https://twitter.com/dog_rates/status/670079681... 10 10 Fabio floofer https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7414 670079681849372674 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... https://twitter.com/dog_rates/status/670079681... 10 10 Fabio pupper https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7415 670079681849372674 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... https://twitter.com/dog_rates/status/670079681... 10 10 Fabio puppo https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False 1373 2390
7416 670073503555706880 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... https://twitter.com/dog_rates/status/670073503... 10 10 Winston doggo https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7417 670073503555706880 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... https://twitter.com/dog_rates/status/670073503... 10 10 Winston floofer https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7418 670073503555706880 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... https://twitter.com/dog_rates/status/670073503... 10 10 Winston pupper https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7419 670073503555706880 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... https://twitter.com/dog_rates/status/670073503... 10 10 Winston puppo https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True 874 1674
7420 670069087419133954 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... https://twitter.com/dog_rates/status/670069087... 5 10 Randall doggo https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7421 670069087419133954 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... https://twitter.com/dog_rates/status/670069087... 5 10 Randall floofer https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7422 670069087419133954 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... https://twitter.com/dog_rates/status/670069087... 5 10 Randall pupper https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7423 670069087419133954 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... https://twitter.com/dog_rates/status/670069087... 5 10 Randall puppo https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False 278 676
7424 670061506722140161 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... https://twitter.com/dog_rates/status/670061506... 11 10 Liam doggo https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7425 670061506722140161 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... https://twitter.com/dog_rates/status/670061506... 11 10 Liam floofer https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7426 670061506722140161 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... https://twitter.com/dog_rates/status/670061506... 11 10 Liam pupper https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7427 670061506722140161 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... https://twitter.com/dog_rates/status/670061506... 11 10 Liam puppo https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True 373 822
7428 670055038660800512 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... https://twitter.com/dog_rates/status/670055038... 3 10 Tommy doggo https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7429 670055038660800512 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... https://twitter.com/dog_rates/status/670055038... 3 10 Tommy floofer https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7430 670055038660800512 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... https://twitter.com/dog_rates/status/670055038... 3 10 Tommy pupper https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7431 670055038660800512 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... https://twitter.com/dog_rates/status/670055038... 3 10 Tommy puppo https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False 357 716
7432 670046952931721218 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... https://twitter.com/dog_rates/status/670046952... 11 10 Ben doggo https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7433 670046952931721218 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... https://twitter.com/dog_rates/status/670046952... 11 10 Ben floofer https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7434 670046952931721218 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... https://twitter.com/dog_rates/status/670046952... 11 10 Ben pupper https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7435 670046952931721218 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... https://twitter.com/dog_rates/status/670046952... 11 10 Ben puppo https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True 191 684
7436 670040295598354432 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... https://twitter.com/dog_rates/status/670040295... 10 10 None doggo https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7437 670040295598354432 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... https://twitter.com/dog_rates/status/670040295... 10 10 None floofer https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7438 670040295598354432 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... https://twitter.com/dog_rates/status/670040295... 10 10 None pupper https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7439 670040295598354432 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... https://twitter.com/dog_rates/status/670040295... 10 10 None puppo https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True 118 801
7440 670037189829525505 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... https://twitter.com/dog_rates/status/670037189... 5 10 None doggo https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7441 670037189829525505 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... https://twitter.com/dog_rates/status/670037189... 5 10 None floofer https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7442 670037189829525505 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... https://twitter.com/dog_rates/status/670037189... 5 10 None pupper https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7443 670037189829525505 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... https://twitter.com/dog_rates/status/670037189... 5 10 None puppo https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False 306 625
7444 670003130994700288 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... https://twitter.com/dog_rates/status/670003130... 10 10 Raphael doggo https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7445 670003130994700288 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... https://twitter.com/dog_rates/status/670003130... 10 10 Raphael floofer https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7446 670003130994700288 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... https://twitter.com/dog_rates/status/670003130... 10 10 Raphael pupper https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7447 670003130994700288 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... https://twitter.com/dog_rates/status/670003130... 10 10 Raphael puppo https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True 100 352
7448 669993076832759809 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... https://twitter.com/dog_rates/status/669993076... 9 10 Zoey doggo https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7449 669993076832759809 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... https://twitter.com/dog_rates/status/669993076... 9 10 Zoey floofer https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7450 669993076832759809 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... https://twitter.com/dog_rates/status/669993076... 9 10 Zoey pupper https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7451 669993076832759809 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... https://twitter.com/dog_rates/status/669993076... 9 10 Zoey puppo https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True 92 344
7452 669972011175813120 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... https://twitter.com/dog_rates/status/669972011... 10 10 None doggo https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7453 669972011175813120 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... https://twitter.com/dog_rates/status/669972011... 10 10 None floofer https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7454 669972011175813120 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... https://twitter.com/dog_rates/status/669972011... 10 10 None pupper https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7455 669972011175813120 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... https://twitter.com/dog_rates/status/669972011... 10 10 None puppo https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False 175 471
7456 669970042633789440 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... https://twitter.com/dog_rates/status/669970042... 10 10 Julio doggo https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7457 669970042633789440 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... https://twitter.com/dog_rates/status/669970042... 10 10 Julio floofer https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7458 669970042633789440 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... https://twitter.com/dog_rates/status/669970042... 10 10 Julio pupper https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7459 669970042633789440 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... https://twitter.com/dog_rates/status/669970042... 10 10 Julio puppo https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True 65 317
7460 669942763794931712 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... https://twitter.com/dog_rates/status/669942763... 11 10 Andru doggo https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7461 669942763794931712 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... https://twitter.com/dog_rates/status/669942763... 11 10 Andru floofer https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7462 669942763794931712 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... https://twitter.com/dog_rates/status/669942763... 11 10 Andru pupper https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7463 669942763794931712 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... https://twitter.com/dog_rates/status/669942763... 11 10 Andru puppo https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True 183 536
7464 669926384437997569 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... https://twitter.com/dog_rates/status/669926384... 12 10 None doggo https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7465 669926384437997569 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... https://twitter.com/dog_rates/status/669926384... 12 10 None floofer https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7466 669926384437997569 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... https://twitter.com/dog_rates/status/669926384... 12 10 None pupper https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7467 669926384437997569 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... https://twitter.com/dog_rates/status/669926384... 12 10 None puppo https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True 115 400
7468 669923323644657664 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... https://twitter.com/dog_rates/status/669923323... 10 10 a doggo https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7469 669923323644657664 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... https://twitter.com/dog_rates/status/669923323... 10 10 a floofer https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7470 669923323644657664 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... https://twitter.com/dog_rates/status/669923323... 10 10 a pupper https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7471 669923323644657664 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... https://twitter.com/dog_rates/status/669923323... 10 10 a puppo https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False 64 250
7472 669753178989142016 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... https://twitter.com/dog_rates/status/669753178... 10 10 Chester doggo https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7473 669753178989142016 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... https://twitter.com/dog_rates/status/669753178... 10 10 Chester floofer https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7474 669753178989142016 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... https://twitter.com/dog_rates/status/669753178... 10 10 Chester pupper https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7475 669753178989142016 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... https://twitter.com/dog_rates/status/669753178... 10 10 Chester puppo https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True 431 858
7476 669749430875258880 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... https://twitter.com/dog_rates/status/669749430... 8 10 Clarence doggo https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7477 669749430875258880 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... https://twitter.com/dog_rates/status/669749430... 8 10 Clarence floofer https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7478 669749430875258880 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... https://twitter.com/dog_rates/status/669749430... 8 10 Clarence pupper https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7479 669749430875258880 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... https://twitter.com/dog_rates/status/669749430... 8 10 Clarence puppo https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False 71 289
7480 669683899023405056 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... https://twitter.com/dog_rates/status/669683899... 10 10 Kloey doggo https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7481 669683899023405056 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... https://twitter.com/dog_rates/status/669683899... 10 10 Kloey floofer https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7482 669683899023405056 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... https://twitter.com/dog_rates/status/669683899... 10 10 Kloey pupper https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7483 669683899023405056 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... https://twitter.com/dog_rates/status/669683899... 10 10 Kloey puppo https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True 119 412
7484 669682095984410625 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... https://twitter.com/dog_rates/status/669682095... 9 10 Louie doggo https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7485 669682095984410625 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... https://twitter.com/dog_rates/status/669682095... 9 10 Louie floofer https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7486 669682095984410625 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... https://twitter.com/dog_rates/status/669682095... 9 10 Louie pupper https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7487 669682095984410625 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... https://twitter.com/dog_rates/status/669682095... 9 10 Louie puppo https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False 146 375
7488 669680153564442624 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn doggo https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7489 669680153564442624 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn floofer https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7490 669680153564442624 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn pupper https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7491 669680153564442624 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn puppo https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True 311 712
7492 669661792646373376 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... https://twitter.com/dog_rates/status/669661792... 5 10 a doggo https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7493 669661792646373376 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... https://twitter.com/dog_rates/status/669661792... 5 10 a floofer https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7494 669661792646373376 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... https://twitter.com/dog_rates/status/669661792... 5 10 a pupper https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7495 669661792646373376 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... https://twitter.com/dog_rates/status/669661792... 5 10 a puppo https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False 482 860
7496 669625907762618368 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... https://twitter.com/dog_rates/status/669625907... 12 10 Penny doggo https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7497 669625907762618368 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... https://twitter.com/dog_rates/status/669625907... 12 10 Penny floofer https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7498 669625907762618368 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... https://twitter.com/dog_rates/status/669625907... 12 10 Penny pupper https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7499 669625907762618368 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... https://twitter.com/dog_rates/status/669625907... 12 10 Penny puppo https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True 1963 3769
7500 669603084620980224 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... https://twitter.com/dog_rates/status/669603084... 10 10 None doggo https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7501 669603084620980224 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... https://twitter.com/dog_rates/status/669603084... 10 10 None floofer https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7502 669603084620980224 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... https://twitter.com/dog_rates/status/669603084... 10 10 None pupper https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7503 669603084620980224 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... https://twitter.com/dog_rates/status/669603084... 10 10 None puppo https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True 401 1006
7504 669597912108789760 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... https://twitter.com/dog_rates/status/669597912... 10 10 Skye doggo https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7505 669597912108789760 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... https://twitter.com/dog_rates/status/669597912... 10 10 Skye floofer https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7506 669597912108789760 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... https://twitter.com/dog_rates/status/669597912... 10 10 Skye pupper https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7507 669597912108789760 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... https://twitter.com/dog_rates/status/669597912... 10 10 Skye puppo https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False 163 550
7508 669583744538451968 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... https://twitter.com/dog_rates/status/669583744... 6 10 None doggo https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7509 669583744538451968 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... https://twitter.com/dog_rates/status/669583744... 6 10 None floofer https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7510 669583744538451968 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... https://twitter.com/dog_rates/status/669583744... 6 10 None pupper https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7511 669583744538451968 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... https://twitter.com/dog_rates/status/669583744... 6 10 None puppo https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False 1017 1587
7512 669573570759163904 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... https://twitter.com/dog_rates/status/669573570... 10 10 Linda doggo https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7513 669573570759163904 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... https://twitter.com/dog_rates/status/669573570... 10 10 Linda floofer https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7514 669573570759163904 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... https://twitter.com/dog_rates/status/669573570... 10 10 Linda pupper https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7515 669573570759163904 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... https://twitter.com/dog_rates/status/669573570... 10 10 Linda puppo https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True 156 467
7516 669571471778410496 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... https://twitter.com/dog_rates/status/669571471... 7 10 Keith doggo https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7517 669571471778410496 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... https://twitter.com/dog_rates/status/669571471... 7 10 Keith floofer https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7518 669571471778410496 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... https://twitter.com/dog_rates/status/669571471... 7 10 Keith pupper https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7519 669571471778410496 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... https://twitter.com/dog_rates/status/669571471... 7 10 Keith puppo https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False 1085 1684
7520 669567591774625800 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... https://twitter.com/dog_rates/status/669567591... 9 10 Kollin doggo https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7521 669567591774625800 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... https://twitter.com/dog_rates/status/669567591... 9 10 Kollin floofer https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7522 669567591774625800 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... https://twitter.com/dog_rates/status/669567591... 9 10 Kollin pupper https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7523 669567591774625800 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... https://twitter.com/dog_rates/status/669567591... 9 10 Kollin puppo https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True 61 248
7524 669564461267722241 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... https://twitter.com/dog_rates/status/669564461... 10 10 a doggo https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7525 669564461267722241 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... https://twitter.com/dog_rates/status/669564461... 10 10 a floofer https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7526 669564461267722241 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... https://twitter.com/dog_rates/status/669564461... 10 10 a pupper https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7527 669564461267722241 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... https://twitter.com/dog_rates/status/669564461... 10 10 a puppo https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True 133 413
7528 669393256313184256 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh doggo https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7529 669393256313184256 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh floofer https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7530 669393256313184256 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh pupper https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7531 669393256313184256 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh puppo https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True 83 383
7532 669375718304980992 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... https://twitter.com/dog_rates/status/669375718... 6 10 Billl doggo https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7533 669375718304980992 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... https://twitter.com/dog_rates/status/669375718... 6 10 Billl floofer https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7534 669375718304980992 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... https://twitter.com/dog_rates/status/669375718... 6 10 Billl pupper https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7535 669375718304980992 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... https://twitter.com/dog_rates/status/669375718... 6 10 Billl puppo https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True 792 1425
7536 669371483794317312 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér doggo https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7537 669371483794317312 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér floofer https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7538 669371483794317312 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér pupper https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7539 669371483794317312 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér puppo https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True 196 524
7540 669367896104181761 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... https://twitter.com/dog_rates/status/669367896... 10 10 Chip doggo https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7541 669367896104181761 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... https://twitter.com/dog_rates/status/669367896... 10 10 Chip floofer https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7542 669367896104181761 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... https://twitter.com/dog_rates/status/669367896... 10 10 Chip pupper https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7543 669367896104181761 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... https://twitter.com/dog_rates/status/669367896... 10 10 Chip puppo https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True 172 485
7544 669363888236994561 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... https://twitter.com/dog_rates/status/669363888... 10 10 None doggo https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7545 669363888236994561 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... https://twitter.com/dog_rates/status/669363888... 10 10 None floofer https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7546 669363888236994561 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... https://twitter.com/dog_rates/status/669363888... 10 10 None pupper https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7547 669363888236994561 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... https://twitter.com/dog_rates/status/669363888... 10 10 None puppo https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True 252 669
7548 669359674819481600 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... https://twitter.com/dog_rates/status/669359674... 11 10 Saydee doggo https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7549 669359674819481600 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... https://twitter.com/dog_rates/status/669359674... 11 10 Saydee floofer https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7550 669359674819481600 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... https://twitter.com/dog_rates/status/669359674... 11 10 Saydee pupper https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7551 669359674819481600 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... https://twitter.com/dog_rates/status/669359674... 11 10 Saydee puppo https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True 134 390
7552 669354382627049472 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... https://twitter.com/dog_rates/status/669354382... 8 10 Dug doggo https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7553 669354382627049472 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... https://twitter.com/dog_rates/status/669354382... 8 10 Dug floofer https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7554 669354382627049472 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... https://twitter.com/dog_rates/status/669354382... 8 10 Dug pupper https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7555 669354382627049472 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... https://twitter.com/dog_rates/status/669354382... 8 10 Dug puppo https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True 1390 2889
7556 669353438988365824 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... https://twitter.com/dog_rates/status/669353438... 10 10 Tessa doggo https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7557 669353438988365824 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... https://twitter.com/dog_rates/status/669353438... 10 10 Tessa floofer https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7558 669353438988365824 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... https://twitter.com/dog_rates/status/669353438... 10 10 Tessa pupper https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7559 669353438988365824 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... https://twitter.com/dog_rates/status/669353438... 10 10 Tessa puppo https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True 281 687
7560 669351434509529089 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... https://twitter.com/dog_rates/status/669351434... 10 10 Sully doggo https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7561 669351434509529089 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... https://twitter.com/dog_rates/status/669351434... 10 10 Sully floofer https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7562 669351434509529089 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... https://twitter.com/dog_rates/status/669351434... 10 10 Sully pupper https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7563 669351434509529089 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... https://twitter.com/dog_rates/status/669351434... 10 10 Sully puppo https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False 207 474
7564 669328503091937280 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... https://twitter.com/dog_rates/status/669328503... 12 10 Kirk doggo https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7565 669328503091937280 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... https://twitter.com/dog_rates/status/669328503... 12 10 Kirk floofer https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7566 669328503091937280 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... https://twitter.com/dog_rates/status/669328503... 12 10 Kirk pupper https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7567 669328503091937280 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... https://twitter.com/dog_rates/status/669328503... 12 10 Kirk puppo https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True 452 1081
7568 669327207240699904 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... https://twitter.com/dog_rates/status/669327207... 13 10 None doggo https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7569 669327207240699904 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... https://twitter.com/dog_rates/status/669327207... 13 10 None floofer https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7570 669327207240699904 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... https://twitter.com/dog_rates/status/669327207... 13 10 None pupper https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7571 669327207240699904 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... https://twitter.com/dog_rates/status/669327207... 13 10 None puppo https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True 127 610
7572 669324657376567296 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... https://twitter.com/dog_rates/status/669324657... 11 10 Ralf doggo https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7573 669324657376567296 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... https://twitter.com/dog_rates/status/669324657... 11 10 Ralf floofer https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7574 669324657376567296 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... https://twitter.com/dog_rates/status/669324657... 11 10 Ralf pupper https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7575 669324657376567296 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... https://twitter.com/dog_rates/status/669324657... 11 10 Ralf puppo https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False 223 525
7576 669216679721873412 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... https://twitter.com/dog_rates/status/669216679... 8 10 Clarq doggo https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7577 669216679721873412 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... https://twitter.com/dog_rates/status/669216679... 8 10 Clarq floofer https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7578 669216679721873412 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... https://twitter.com/dog_rates/status/669216679... 8 10 Clarq pupper https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7579 669216679721873412 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... https://twitter.com/dog_rates/status/669216679... 8 10 Clarq puppo https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True 422 958
7580 669214165781868544 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers doggo https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7581 669214165781868544 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers floofer https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7582 669214165781868544 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers pupper https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7583 669214165781868544 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers puppo https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False 183 468
7584 669203728096960512 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... https://twitter.com/dog_rates/status/669203728... 9 10 Samsom doggo https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7585 669203728096960512 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... https://twitter.com/dog_rates/status/669203728... 9 10 Samsom floofer https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7586 669203728096960512 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... https://twitter.com/dog_rates/status/669203728... 9 10 Samsom pupper https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7587 669203728096960512 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... https://twitter.com/dog_rates/status/669203728... 9 10 Samsom puppo https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True 522 1074
7588 669037058363662336 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... https://twitter.com/dog_rates/status/669037058... 10 10 None doggo https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7589 669037058363662336 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... https://twitter.com/dog_rates/status/669037058... 10 10 None floofer https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7590 669037058363662336 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... https://twitter.com/dog_rates/status/669037058... 10 10 None pupper https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7591 669037058363662336 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... https://twitter.com/dog_rates/status/669037058... 10 10 None puppo https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True 336 698
7592 669015743032369152 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... https://twitter.com/dog_rates/status/669015743... 10 10 None doggo https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7593 669015743032369152 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... https://twitter.com/dog_rates/status/669015743... 10 10 None floofer https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7594 669015743032369152 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... https://twitter.com/dog_rates/status/669015743... 10 10 None pupper https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7595 669015743032369152 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... https://twitter.com/dog_rates/status/669015743... 10 10 None puppo https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False 403 785
7596 669006782128353280 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... https://twitter.com/dog_rates/status/669006782... 12 10 Tucker doggo https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7597 669006782128353280 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... https://twitter.com/dog_rates/status/669006782... 12 10 Tucker floofer https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7598 669006782128353280 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... https://twitter.com/dog_rates/status/669006782... 12 10 Tucker pupper https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7599 669006782128353280 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... https://twitter.com/dog_rates/status/669006782... 12 10 Tucker puppo https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False 269 610
7600 669000397445533696 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... https://twitter.com/dog_rates/status/669000397... 11 10 Terrance doggo https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7601 669000397445533696 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... https://twitter.com/dog_rates/status/669000397... 11 10 Terrance floofer https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7602 669000397445533696 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... https://twitter.com/dog_rates/status/669000397... 11 10 Terrance pupper https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7603 669000397445533696 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... https://twitter.com/dog_rates/status/669000397... 11 10 Terrance puppo https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True 6965 22118
7604 668994913074286592 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... https://twitter.com/dog_rates/status/668994913... 5 10 None doggo https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7605 668994913074286592 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... https://twitter.com/dog_rates/status/668994913... 5 10 None floofer https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7606 668994913074286592 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... https://twitter.com/dog_rates/status/668994913... 5 10 None pupper https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7607 668994913074286592 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... https://twitter.com/dog_rates/status/668994913... 5 10 None puppo https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True 254 468
7608 668992363537309700 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... https://twitter.com/dog_rates/status/668992363... 8 10 Harrison doggo https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7609 668992363537309700 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... https://twitter.com/dog_rates/status/668992363... 8 10 Harrison floofer https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7610 668992363537309700 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... https://twitter.com/dog_rates/status/668992363... 8 10 Harrison pupper https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7611 668992363537309700 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... https://twitter.com/dog_rates/status/668992363... 8 10 Harrison puppo https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False 381 802
7612 668989615043424256 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... https://twitter.com/dog_rates/status/668989615... 3 10 Bernie doggo https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7613 668989615043424256 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... https://twitter.com/dog_rates/status/668989615... 3 10 Bernie floofer https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7614 668989615043424256 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... https://twitter.com/dog_rates/status/668989615... 3 10 Bernie pupper https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7615 668989615043424256 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... https://twitter.com/dog_rates/status/668989615... 3 10 Bernie puppo https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True 356 726
7616 668988183816871936 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... https://twitter.com/dog_rates/status/668988183... 7 10 None doggo https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7617 668988183816871936 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... https://twitter.com/dog_rates/status/668988183... 7 10 None floofer https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7618 668988183816871936 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... https://twitter.com/dog_rates/status/668988183... 7 10 None pupper https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7619 668988183816871936 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... https://twitter.com/dog_rates/status/668988183... 7 10 None puppo https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False 516 961
7620 668986018524233728 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... https://twitter.com/dog_rates/status/668986018... 9 10 Ruby doggo https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7621 668986018524233728 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... https://twitter.com/dog_rates/status/668986018... 9 10 Ruby floofer https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7622 668986018524233728 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... https://twitter.com/dog_rates/status/668986018... 9 10 Ruby pupper https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7623 668986018524233728 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... https://twitter.com/dog_rates/status/668986018... 9 10 Ruby puppo https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True 183 578
7624 668981893510119424 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... https://twitter.com/dog_rates/status/668981893... 4 10 None doggo https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7625 668981893510119424 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... https://twitter.com/dog_rates/status/668981893... 4 10 None floofer https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7626 668981893510119424 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... https://twitter.com/dog_rates/status/668981893... 4 10 None pupper https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7627 668981893510119424 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... https://twitter.com/dog_rates/status/668981893... 4 10 None puppo https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False 340 573
7628 668979806671884288 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... https://twitter.com/dog_rates/status/668979806... 12 10 Chaz doggo https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7629 668979806671884288 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... https://twitter.com/dog_rates/status/668979806... 12 10 Chaz floofer https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7630 668979806671884288 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... https://twitter.com/dog_rates/status/668979806... 12 10 Chaz pupper https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7631 668979806671884288 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... https://twitter.com/dog_rates/status/668979806... 12 10 Chaz puppo https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True 382 842
7632 668975677807423489 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy doggo https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7633 668975677807423489 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy floofer https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7634 668975677807423489 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy pupper https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7635 668975677807423489 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy puppo https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True 641 1386
7636 668960084974809088 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob doggo https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7637 668960084974809088 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob floofer https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7638 668960084974809088 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob pupper https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7639 668960084974809088 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob puppo https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False 263 757
7640 668955713004314625 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... https://twitter.com/dog_rates/status/668955713... 10 10 a doggo https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7641 668955713004314625 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... https://twitter.com/dog_rates/status/668955713... 10 10 a floofer https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7642 668955713004314625 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... https://twitter.com/dog_rates/status/668955713... 10 10 a pupper https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7643 668955713004314625 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... https://twitter.com/dog_rates/status/668955713... 10 10 a puppo https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True 77 300
7644 668932921458302977 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... https://twitter.com/dog_rates/status/668932921... 9 10 Herald doggo https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7645 668932921458302977 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... https://twitter.com/dog_rates/status/668932921... 9 10 Herald floofer https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7646 668932921458302977 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... https://twitter.com/dog_rates/status/668932921... 9 10 Herald pupper https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7647 668932921458302977 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... https://twitter.com/dog_rates/status/668932921... 9 10 Herald puppo https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True 63 284
7648 668902994700836864 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau doggo https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7649 668902994700836864 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau floofer https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7650 668902994700836864 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau pupper https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7651 668902994700836864 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau puppo https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True 107 338
7652 668892474547511297 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles doggo https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7653 668892474547511297 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles floofer https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7654 668892474547511297 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles pupper https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7655 668892474547511297 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles puppo https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True 164 422
7656 668872652652679168 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... https://twitter.com/dog_rates/status/668872652... 11 10 Amélie doggo https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7657 668872652652679168 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... https://twitter.com/dog_rates/status/668872652... 11 10 Amélie floofer https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7658 668872652652679168 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... https://twitter.com/dog_rates/status/668872652... 11 10 Amélie pupper https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7659 668872652652679168 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... https://twitter.com/dog_rates/status/668872652... 11 10 Amélie puppo https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True 322 566
7660 668852170888998912 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... https://twitter.com/dog_rates/status/668852170... 11 10 Bobb doggo https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7661 668852170888998912 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... https://twitter.com/dog_rates/status/668852170... 11 10 Bobb floofer https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7662 668852170888998912 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... https://twitter.com/dog_rates/status/668852170... 11 10 Bobb pupper https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7663 668852170888998912 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... https://twitter.com/dog_rates/status/668852170... 11 10 Bobb puppo https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True 184 479
7664 668826086256599040 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... https://twitter.com/dog_rates/status/668826086... 10 10 Banditt doggo https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7665 668826086256599040 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... https://twitter.com/dog_rates/status/668826086... 10 10 Banditt floofer https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7666 668826086256599040 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... https://twitter.com/dog_rates/status/668826086... 10 10 Banditt pupper https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7667 668826086256599040 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... https://twitter.com/dog_rates/status/668826086... 10 10 Banditt puppo https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True 150 467
7668 668815180734689280 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... https://twitter.com/dog_rates/status/668815180... 7 10 a doggo https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7669 668815180734689280 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... https://twitter.com/dog_rates/status/668815180... 7 10 a floofer https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7670 668815180734689280 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... https://twitter.com/dog_rates/status/668815180... 7 10 a pupper https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7671 668815180734689280 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... https://twitter.com/dog_rates/status/668815180... 7 10 a puppo https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True 291 610
7672 668779399630725120 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... https://twitter.com/dog_rates/status/668779399... 10 10 Kevon doggo https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7673 668779399630725120 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... https://twitter.com/dog_rates/status/668779399... 10 10 Kevon floofer https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7674 668779399630725120 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... https://twitter.com/dog_rates/status/668779399... 10 10 Kevon pupper https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7675 668779399630725120 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... https://twitter.com/dog_rates/status/668779399... 10 10 Kevon puppo https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False 409 749
7676 668655139528511488 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... https://twitter.com/dog_rates/status/668655139... 11 10 Winifred doggo https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7677 668655139528511488 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... https://twitter.com/dog_rates/status/668655139... 11 10 Winifred floofer https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7678 668655139528511488 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... https://twitter.com/dog_rates/status/668655139... 11 10 Winifred pupper https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7679 668655139528511488 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... https://twitter.com/dog_rates/status/668655139... 11 10 Winifred puppo https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True 233 562
7680 668645506898350081 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... https://twitter.com/dog_rates/status/668645506... 11 10 None doggo https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7681 668645506898350081 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... https://twitter.com/dog_rates/status/668645506... 11 10 None floofer https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7682 668645506898350081 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... https://twitter.com/dog_rates/status/668645506... 11 10 None pupper https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7683 668645506898350081 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... https://twitter.com/dog_rates/status/668645506... 11 10 None puppo https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False 588 962
7684 668643542311546881 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... https://twitter.com/dog_rates/status/668643542... 3 10 None doggo https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7685 668643542311546881 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... https://twitter.com/dog_rates/status/668643542... 3 10 None floofer https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7686 668643542311546881 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... https://twitter.com/dog_rates/status/668643542... 3 10 None pupper https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7687 668643542311546881 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... https://twitter.com/dog_rates/status/668643542... 3 10 None puppo https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False 576 939
7688 668641109086707712 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... https://twitter.com/dog_rates/status/668641109... 10 10 Hanz doggo https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7689 668641109086707712 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... https://twitter.com/dog_rates/status/668641109... 10 10 Hanz floofer https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7690 668641109086707712 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... https://twitter.com/dog_rates/status/668641109... 10 10 Hanz pupper https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7691 668641109086707712 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... https://twitter.com/dog_rates/status/668641109... 10 10 Hanz puppo https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False 573 1145
7692 668636665813057536 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... https://twitter.com/dog_rates/status/668636665... 10 10 an doggo https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7693 668636665813057536 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... https://twitter.com/dog_rates/status/668636665... 10 10 an floofer https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7694 668636665813057536 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... https://twitter.com/dog_rates/status/668636665... 10 10 an pupper https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7695 668636665813057536 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... https://twitter.com/dog_rates/status/668636665... 10 10 an puppo https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False 528 1114
7696 668633411083464705 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... https://twitter.com/dog_rates/status/668633411... 10 10 Churlie doggo https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7697 668633411083464705 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... https://twitter.com/dog_rates/status/668633411... 10 10 Churlie floofer https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7698 668633411083464705 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... https://twitter.com/dog_rates/status/668633411... 10 10 Churlie pupper https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7699 668633411083464705 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... https://twitter.com/dog_rates/status/668633411... 10 10 Churlie puppo https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True 1788 3024
7700 668631377374486528 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... https://twitter.com/dog_rates/status/668631377... 5 10 Zeek doggo https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7701 668631377374486528 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... https://twitter.com/dog_rates/status/668631377... 5 10 Zeek floofer https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7702 668631377374486528 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... https://twitter.com/dog_rates/status/668631377... 5 10 Zeek pupper https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7703 668631377374486528 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... https://twitter.com/dog_rates/status/668631377... 5 10 Zeek puppo https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True 349 763
7704 668627278264475648 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... https://twitter.com/dog_rates/status/668627278... 9 10 Timofy doggo https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7705 668627278264475648 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... https://twitter.com/dog_rates/status/668627278... 9 10 Timofy floofer https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7706 668627278264475648 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... https://twitter.com/dog_rates/status/668627278... 9 10 Timofy pupper https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7707 668627278264475648 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... https://twitter.com/dog_rates/status/668627278... 9 10 Timofy puppo https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True 123 341
7708 668625577880875008 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... https://twitter.com/dog_rates/status/668625577... 10 10 Maks doggo https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7709 668625577880875008 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... https://twitter.com/dog_rates/status/668625577... 10 10 Maks floofer https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7710 668625577880875008 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... https://twitter.com/dog_rates/status/668625577... 10 10 Maks pupper https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7711 668625577880875008 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... https://twitter.com/dog_rates/status/668625577... 10 10 Maks puppo https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False 140 417
7712 668623201287675904 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan doggo https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7713 668623201287675904 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan floofer https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7714 668623201287675904 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan pupper https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7715 668623201287675904 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan puppo https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False 851 1551
7716 668620235289837568 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... https://twitter.com/dog_rates/status/668620235... 10 10 Kallie doggo https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7717 668620235289837568 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... https://twitter.com/dog_rates/status/668620235... 10 10 Kallie floofer https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7718 668620235289837568 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... https://twitter.com/dog_rates/status/668620235... 10 10 Kallie pupper https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7719 668620235289837568 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... https://twitter.com/dog_rates/status/668620235... 10 10 Kallie puppo https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False 45 211
7720 668614819948453888 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... https://twitter.com/dog_rates/status/668614819... 7 10 a doggo https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7721 668614819948453888 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... https://twitter.com/dog_rates/status/668614819... 7 10 a floofer https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7722 668614819948453888 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... https://twitter.com/dog_rates/status/668614819... 7 10 a pupper https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7723 668614819948453888 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... https://twitter.com/dog_rates/status/668614819... 7 10 a puppo https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False 341 654
7724 668567822092664832 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... https://twitter.com/dog_rates/status/668567822... 11 10 Marvin doggo https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7725 668567822092664832 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... https://twitter.com/dog_rates/status/668567822... 11 10 Marvin floofer https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7726 668567822092664832 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... https://twitter.com/dog_rates/status/668567822... 11 10 Marvin pupper https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7727 668567822092664832 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... https://twitter.com/dog_rates/status/668567822... 11 10 Marvin puppo https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True 62 265
7728 668544745690562560 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... https://twitter.com/dog_rates/status/668544745... 10 10 None doggo https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7729 668544745690562560 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... https://twitter.com/dog_rates/status/668544745... 10 10 None floofer https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7730 668544745690562560 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... https://twitter.com/dog_rates/status/668544745... 10 10 None pupper https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7731 668544745690562560 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... https://twitter.com/dog_rates/status/668544745... 10 10 None puppo https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False 250 561
7732 668542336805281792 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... https://twitter.com/dog_rates/status/668542336... 10 10 None doggo https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7733 668542336805281792 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... https://twitter.com/dog_rates/status/668542336... 10 10 None floofer https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7734 668542336805281792 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... https://twitter.com/dog_rates/status/668542336... 10 10 None pupper https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7735 668542336805281792 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... https://twitter.com/dog_rates/status/668542336... 10 10 None puppo https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True 231 497
7736 668537837512433665 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... https://twitter.com/dog_rates/status/668537837... 8 10 Spark doggo https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7737 668537837512433665 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... https://twitter.com/dog_rates/status/668537837... 8 10 Spark floofer https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7738 668537837512433665 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... https://twitter.com/dog_rates/status/668537837... 8 10 Spark pupper https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7739 668537837512433665 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... https://twitter.com/dog_rates/status/668537837... 8 10 Spark puppo https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True 79 265
7740 668528771708952576 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón doggo https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7741 668528771708952576 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón floofer https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7742 668528771708952576 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón pupper https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7743 668528771708952576 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón puppo https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True 242 496
7744 668507509523615744 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... https://twitter.com/dog_rates/status/668507509... 10 10 a doggo https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7745 668507509523615744 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... https://twitter.com/dog_rates/status/668507509... 10 10 a floofer https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7746 668507509523615744 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... https://twitter.com/dog_rates/status/668507509... 10 10 a pupper https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7747 668507509523615744 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... https://twitter.com/dog_rates/status/668507509... 10 10 a puppo https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True 116 345
7748 668496999348633600 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... https://twitter.com/dog_rates/status/668496999... 8 10 Jo doggo https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7749 668496999348633600 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... https://twitter.com/dog_rates/status/668496999... 8 10 Jo floofer https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7750 668496999348633600 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... https://twitter.com/dog_rates/status/668496999... 8 10 Jo pupper https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7751 668496999348633600 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... https://twitter.com/dog_rates/status/668496999... 8 10 Jo puppo https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True 146 436
7752 668484198282485761 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... https://twitter.com/dog_rates/status/668484198... 9 10 None doggo https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7753 668484198282485761 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... https://twitter.com/dog_rates/status/668484198... 9 10 None floofer https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7754 668484198282485761 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... https://twitter.com/dog_rates/status/668484198... 9 10 None pupper https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7755 668484198282485761 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... https://twitter.com/dog_rates/status/668484198... 9 10 None puppo https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True 253 453
7756 668480044826800133 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... https://twitter.com/dog_rates/status/668480044... 11 10 DayZ doggo https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7757 668480044826800133 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... https://twitter.com/dog_rates/status/668480044... 11 10 DayZ floofer https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7758 668480044826800133 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... https://twitter.com/dog_rates/status/668480044... 11 10 DayZ pupper https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7759 668480044826800133 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... https://twitter.com/dog_rates/status/668480044... 11 10 DayZ puppo https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True 162 491
7760 668466899341221888 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... https://twitter.com/dog_rates/status/668466899... 4 10 a doggo https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7761 668466899341221888 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... https://twitter.com/dog_rates/status/668466899... 4 10 a floofer https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7762 668466899341221888 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... https://twitter.com/dog_rates/status/668466899... 4 10 a pupper https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7763 668466899341221888 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... https://twitter.com/dog_rates/status/668466899... 4 10 a puppo https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False 560 936
7764 668297328638447616 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... https://twitter.com/dog_rates/status/668297328... 9 10 None doggo https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7765 668297328638447616 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... https://twitter.com/dog_rates/status/668297328... 9 10 None floofer https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7766 668297328638447616 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... https://twitter.com/dog_rates/status/668297328... 9 10 None pupper https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7767 668297328638447616 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... https://twitter.com/dog_rates/status/668297328... 9 10 None puppo https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True 319 656
7768 668291999406125056 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... https://twitter.com/dog_rates/status/668291999... 10 10 None doggo https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7769 668291999406125056 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... https://twitter.com/dog_rates/status/668291999... 10 10 None floofer https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7770 668291999406125056 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... https://twitter.com/dog_rates/status/668291999... 10 10 None pupper https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7771 668291999406125056 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... https://twitter.com/dog_rates/status/668291999... 10 10 None puppo https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False 34 264
7772 668286279830867968 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... https://twitter.com/dog_rates/status/668286279... 11 10 Rusty doggo https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7773 668286279830867968 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... https://twitter.com/dog_rates/status/668286279... 11 10 Rusty floofer https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7774 668286279830867968 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... https://twitter.com/dog_rates/status/668286279... 11 10 Rusty pupper https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7775 668286279830867968 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... https://twitter.com/dog_rates/status/668286279... 11 10 Rusty puppo https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True 149 535
7776 668274247790391296 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... https://twitter.com/dog_rates/status/668274247... 10 10 Sophie doggo https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7777 668274247790391296 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... https://twitter.com/dog_rates/status/668274247... 10 10 Sophie floofer https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7778 668274247790391296 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... https://twitter.com/dog_rates/status/668274247... 10 10 Sophie pupper https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7779 668274247790391296 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... https://twitter.com/dog_rates/status/668274247... 10 10 Sophie puppo https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True 248 886
7780 668268907921326080 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... https://twitter.com/dog_rates/status/668268907... 10 10 None doggo https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7781 668268907921326080 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... https://twitter.com/dog_rates/status/668268907... 10 10 None floofer https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7782 668268907921326080 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... https://twitter.com/dog_rates/status/668268907... 10 10 None pupper https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7783 668268907921326080 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... https://twitter.com/dog_rates/status/668268907... 10 10 None puppo https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True 261 592
7784 668256321989451776 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... https://twitter.com/dog_rates/status/668256321... 13 10 Jareld doggo https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7785 668256321989451776 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... https://twitter.com/dog_rates/status/668256321... 13 10 Jareld floofer https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7786 668256321989451776 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... https://twitter.com/dog_rates/status/668256321... 13 10 Jareld pupper https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7787 668256321989451776 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... https://twitter.com/dog_rates/status/668256321... 13 10 Jareld puppo https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True 667 1385
7788 668248472370458624 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick doggo https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7789 668248472370458624 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick floofer https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7790 668248472370458624 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick pupper https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7791 668248472370458624 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick puppo https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True 523 1056
7792 668237644992782336 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... https://twitter.com/dog_rates/status/668237644... 10 10 Torque doggo https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7793 668237644992782336 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... https://twitter.com/dog_rates/status/668237644... 10 10 Torque floofer https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7794 668237644992782336 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... https://twitter.com/dog_rates/status/668237644... 10 10 Torque pupper https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7795 668237644992782336 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... https://twitter.com/dog_rates/status/668237644... 10 10 Torque puppo https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True 3100 6614
7796 668226093875376128 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... https://twitter.com/dog_rates/status/668226093... 10 10 None doggo https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7797 668226093875376128 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... https://twitter.com/dog_rates/status/668226093... 10 10 None floofer https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7798 668226093875376128 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... https://twitter.com/dog_rates/status/668226093... 10 10 None pupper https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7799 668226093875376128 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... https://twitter.com/dog_rates/status/668226093... 10 10 None puppo https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False 115 323
7800 668221241640230912 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... https://twitter.com/dog_rates/status/668221241... 10 10 None doggo https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7801 668221241640230912 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... https://twitter.com/dog_rates/status/668221241... 10 10 None floofer https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7802 668221241640230912 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... https://twitter.com/dog_rates/status/668221241... 10 10 None pupper https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7803 668221241640230912 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... https://twitter.com/dog_rates/status/668221241... 10 10 None puppo https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True 215 537
7804 668204964695683073 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... https://twitter.com/dog_rates/status/668204964... 8 10 Ron doggo https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7805 668204964695683073 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... https://twitter.com/dog_rates/status/668204964... 8 10 Ron floofer https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7806 668204964695683073 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... https://twitter.com/dog_rates/status/668204964... 8 10 Ron pupper https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7807 668204964695683073 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... https://twitter.com/dog_rates/status/668204964... 8 10 Ron puppo https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True 206 586
7808 668190681446379520 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... https://twitter.com/dog_rates/status/668190681... 12 10 Skittles doggo https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7809 668190681446379520 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... https://twitter.com/dog_rates/status/668190681... 12 10 Skittles floofer https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7810 668190681446379520 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... https://twitter.com/dog_rates/status/668190681... 12 10 Skittles pupper https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7811 668190681446379520 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... https://twitter.com/dog_rates/status/668190681... 12 10 Skittles puppo https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True 210 696
7812 668171859951755264 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... https://twitter.com/dog_rates/status/668171859... 7 10 a doggo https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7813 668171859951755264 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... https://twitter.com/dog_rates/status/668171859... 7 10 a floofer https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7814 668171859951755264 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... https://twitter.com/dog_rates/status/668171859... 7 10 a pupper https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7815 668171859951755264 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... https://twitter.com/dog_rates/status/668171859... 7 10 a puppo https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False 208 525
7816 668154635664932864 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... https://twitter.com/dog_rates/status/668154635... 9 10 None doggo https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7817 668154635664932864 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... https://twitter.com/dog_rates/status/668154635... 9 10 None floofer https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7818 668154635664932864 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... https://twitter.com/dog_rates/status/668154635... 9 10 None pupper https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7819 668154635664932864 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... https://twitter.com/dog_rates/status/668154635... 9 10 None puppo https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False 336 522
7820 668142349051129856 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... https://twitter.com/dog_rates/status/668142349... 2 10 None doggo https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7821 668142349051129856 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... https://twitter.com/dog_rates/status/668142349... 2 10 None floofer https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7822 668142349051129856 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... https://twitter.com/dog_rates/status/668142349... 2 10 None pupper https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7823 668142349051129856 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... https://twitter.com/dog_rates/status/668142349... 2 10 None puppo https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False 306 592
7824 668113020489474048 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... https://twitter.com/dog_rates/status/668113020... 6 10 Alfie doggo https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7825 668113020489474048 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... https://twitter.com/dog_rates/status/668113020... 6 10 Alfie floofer https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7826 668113020489474048 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... https://twitter.com/dog_rates/status/668113020... 6 10 Alfie pupper https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7827 668113020489474048 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... https://twitter.com/dog_rates/status/668113020... 6 10 Alfie puppo https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True 265 709
7828 667937095915278337 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... https://twitter.com/dog_rates/status/667937095... 3 10 None doggo https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7829 667937095915278337 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... https://twitter.com/dog_rates/status/667937095... 3 10 None floofer https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7830 667937095915278337 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... https://twitter.com/dog_rates/status/667937095... 3 10 None pupper https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7831 667937095915278337 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... https://twitter.com/dog_rates/status/667937095... 3 10 None puppo https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False 866 1356
7832 667924896115245057 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy doggo https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7833 667924896115245057 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy floofer https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7834 667924896115245057 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy pupper https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7835 667924896115245057 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy puppo https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True 119 318
7836 667915453470232577 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... https://twitter.com/dog_rates/status/667915453... 10 10 Otis doggo https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7837 667915453470232577 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... https://twitter.com/dog_rates/status/667915453... 10 10 Otis floofer https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7838 667915453470232577 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... https://twitter.com/dog_rates/status/667915453... 10 10 Otis pupper https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7839 667915453470232577 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... https://twitter.com/dog_rates/status/667915453... 10 10 Otis puppo https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False 59 222
7840 667911425562669056 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... https://twitter.com/dog_rates/status/667911425... 5 10 None doggo https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7841 667911425562669056 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... https://twitter.com/dog_rates/status/667911425... 5 10 None floofer https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7842 667911425562669056 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... https://twitter.com/dog_rates/status/667911425... 5 10 None pupper https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7843 667911425562669056 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... https://twitter.com/dog_rates/status/667911425... 5 10 None puppo https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False 329 523
7844 667902449697558528 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia doggo https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7845 667902449697558528 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia floofer https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7846 667902449697558528 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia pupper https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7847 667902449697558528 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia puppo https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True 396 905
7848 667886921285246976 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... https://twitter.com/dog_rates/status/667886921... 11 10 Erik doggo https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7849 667886921285246976 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... https://twitter.com/dog_rates/status/667886921... 11 10 Erik floofer https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7850 667886921285246976 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... https://twitter.com/dog_rates/status/667886921... 11 10 Erik pupper https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7851 667886921285246976 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... https://twitter.com/dog_rates/status/667886921... 11 10 Erik puppo https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True 1180 2011
7852 667885044254572545 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... https://twitter.com/dog_rates/status/667885044... 10 10 Stu doggo https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7853 667885044254572545 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... https://twitter.com/dog_rates/status/667885044... 10 10 Stu floofer https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7854 667885044254572545 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... https://twitter.com/dog_rates/status/667885044... 10 10 Stu pupper https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7855 667885044254572545 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... https://twitter.com/dog_rates/status/667885044... 10 10 Stu puppo https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False 530 868
7856 667878741721415682 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick doggo https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7857 667878741721415682 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick floofer https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7858 667878741721415682 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick pupper https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7859 667878741721415682 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick puppo https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True 127 409
7860 667873844930215936 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... https://twitter.com/dog_rates/status/667873844... 10 10 None doggo https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7861 667873844930215936 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... https://twitter.com/dog_rates/status/667873844... 10 10 None floofer https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7862 667873844930215936 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... https://twitter.com/dog_rates/status/667873844... 10 10 None pupper https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7863 667873844930215936 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... https://twitter.com/dog_rates/status/667873844... 10 10 None puppo https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False 440 667
7864 667866724293877760 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy doggo https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7865 667866724293877760 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy floofer https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7866 667866724293877760 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy pupper https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7867 667866724293877760 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy puppo https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False 1110 3172
7868 667861340749471744 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... https://twitter.com/dog_rates/status/667861340... 9 10 a doggo https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7869 667861340749471744 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... https://twitter.com/dog_rates/status/667861340... 9 10 a floofer https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7870 667861340749471744 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... https://twitter.com/dog_rates/status/667861340... 9 10 a pupper https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7871 667861340749471744 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... https://twitter.com/dog_rates/status/667861340... 9 10 a puppo https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True 86 253
7872 667832474953625600 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... https://twitter.com/dog_rates/status/667832474... 12 10 None doggo https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7873 667832474953625600 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... https://twitter.com/dog_rates/status/667832474... 12 10 None floofer https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7874 667832474953625600 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... https://twitter.com/dog_rates/status/667832474... 12 10 None pupper https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7875 667832474953625600 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... https://twitter.com/dog_rates/status/667832474... 12 10 None puppo https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True 68 303
7876 667806454573760512 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... https://twitter.com/dog_rates/status/667806454... 10 10 Filup doggo https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7877 667806454573760512 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... https://twitter.com/dog_rates/status/667806454... 10 10 Filup floofer https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7878 667806454573760512 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... https://twitter.com/dog_rates/status/667806454... 10 10 Filup pupper https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7879 667806454573760512 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... https://twitter.com/dog_rates/status/667806454... 10 10 Filup puppo https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True 535 1111
7880 667801013445750784 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w https://twitter.com/dog_rates/status/667801013... 12 10 None doggo https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7881 667801013445750784 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w https://twitter.com/dog_rates/status/667801013... 12 10 None floofer https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7882 667801013445750784 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w https://twitter.com/dog_rates/status/667801013... 12 10 None pupper https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7883 667801013445750784 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w https://twitter.com/dog_rates/status/667801013... 12 10 None puppo https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True 101 346
7884 667793409583771648 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... https://twitter.com/dog_rates/status/667793409... 8 10 None doggo https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7885 667793409583771648 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... https://twitter.com/dog_rates/status/667793409... 8 10 None floofer https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7886 667793409583771648 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... https://twitter.com/dog_rates/status/667793409... 8 10 None pupper https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7887 667793409583771648 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... https://twitter.com/dog_rates/status/667793409... 8 10 None puppo https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True 358 736
7888 667782464991965184 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... https://twitter.com/dog_rates/status/667782464... 9 10 None doggo https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7889 667782464991965184 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... https://twitter.com/dog_rates/status/667782464... 9 10 None floofer https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7890 667782464991965184 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... https://twitter.com/dog_rates/status/667782464... 9 10 None pupper https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7891 667782464991965184 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... https://twitter.com/dog_rates/status/667782464... 9 10 None puppo https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False 261 434
7892 667773195014021121 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... https://twitter.com/dog_rates/status/667773195... 8 10 a doggo https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7893 667773195014021121 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... https://twitter.com/dog_rates/status/667773195... 8 10 a floofer https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7894 667773195014021121 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... https://twitter.com/dog_rates/status/667773195... 8 10 a pupper https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7895 667773195014021121 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... https://twitter.com/dog_rates/status/667773195... 8 10 a puppo https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False 61 243
7896 667766675769573376 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... https://twitter.com/dog_rates/status/667766675... 9 10 Calvin doggo https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7897 667766675769573376 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... https://twitter.com/dog_rates/status/667766675... 9 10 Calvin floofer https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7898 667766675769573376 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... https://twitter.com/dog_rates/status/667766675... 9 10 Calvin pupper https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7899 667766675769573376 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... https://twitter.com/dog_rates/status/667766675... 9 10 Calvin puppo https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False 243 476
7900 667728196545200128 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... https://twitter.com/dog_rates/status/667728196... 11 10 Olive doggo https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7901 667728196545200128 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... https://twitter.com/dog_rates/status/667728196... 11 10 Olive floofer https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7902 667728196545200128 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... https://twitter.com/dog_rates/status/667728196... 11 10 Olive pupper https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7903 667728196545200128 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... https://twitter.com/dog_rates/status/667728196... 11 10 Olive puppo https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True 162 398
7904 667724302356258817 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... https://twitter.com/dog_rates/status/667724302... 7 10 None doggo https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7905 667724302356258817 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... https://twitter.com/dog_rates/status/667724302... 7 10 None floofer https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7906 667724302356258817 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... https://twitter.com/dog_rates/status/667724302... 7 10 None pupper https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7907 667724302356258817 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... https://twitter.com/dog_rates/status/667724302... 7 10 None puppo https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False 341 517
7908 667550904950915073 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... https://twitter.com/dogratingrating/status/667... 12 10 None doggo https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7909 667550904950915073 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... https://twitter.com/dogratingrating/status/667... 12 10 None floofer https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7910 667550904950915073 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... https://twitter.com/dogratingrating/status/667... 12 10 None pupper https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7911 667550904950915073 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... https://twitter.com/dogratingrating/status/667... 12 10 None puppo https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True 37 0
7912 667550882905632768 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... https://twitter.com/dogratingrating/status/667... 5 10 None doggo https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7913 667550882905632768 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... https://twitter.com/dogratingrating/status/667... 5 10 None floofer https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7914 667550882905632768 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... https://twitter.com/dogratingrating/status/667... 5 10 None pupper https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7915 667550882905632768 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... https://twitter.com/dogratingrating/status/667... 5 10 None puppo https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False 34 0
7916 667549055577362432 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... https://twitter.com/dog_rates/status/667549055... 1 10 None doggo https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7917 667549055577362432 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... https://twitter.com/dog_rates/status/667549055... 1 10 None floofer https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7918 667549055577362432 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... https://twitter.com/dog_rates/status/667549055... 1 10 None pupper https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7919 667549055577362432 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... https://twitter.com/dog_rates/status/667549055... 1 10 None puppo https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False 2454 6138
7920 667546741521195010 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... https://twitter.com/dog_rates/status/667546741... 9 10 George doggo https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7921 667546741521195010 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... https://twitter.com/dog_rates/status/667546741... 9 10 George floofer https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7922 667546741521195010 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... https://twitter.com/dog_rates/status/667546741... 9 10 George pupper https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7923 667546741521195010 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... https://twitter.com/dog_rates/status/667546741... 9 10 George puppo https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False 138 355
7924 667544320556335104 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... https://twitter.com/dog_rates/status/667544320... 10 10 Kial doggo https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7925 667544320556335104 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... https://twitter.com/dog_rates/status/667544320... 10 10 Kial floofer https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7926 667544320556335104 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... https://twitter.com/dog_rates/status/667544320... 10 10 Kial pupper https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7927 667544320556335104 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... https://twitter.com/dog_rates/status/667544320... 10 10 Kial puppo https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True 568 917
7928 667538891197542400 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... https://twitter.com/dog_rates/status/667538891... 9 10 a doggo https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7929 667538891197542400 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... https://twitter.com/dog_rates/status/667538891... 9 10 a floofer https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7930 667538891197542400 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... https://twitter.com/dog_rates/status/667538891... 9 10 a pupper https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7931 667538891197542400 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... https://twitter.com/dog_rates/status/667538891... 9 10 a puppo https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True 72 220
7932 667534815156183040 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... https://twitter.com/dog_rates/status/667534815... 8 10 Frank doggo https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7933 667534815156183040 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... https://twitter.com/dog_rates/status/667534815... 8 10 Frank floofer https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7934 667534815156183040 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... https://twitter.com/dog_rates/status/667534815... 8 10 Frank pupper https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7935 667534815156183040 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... https://twitter.com/dog_rates/status/667534815... 8 10 Frank puppo https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True 576 866
7936 667530908589760512 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel doggo https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7937 667530908589760512 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel floofer https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7938 667530908589760512 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel pupper https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7939 667530908589760512 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel puppo https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True 264 501
7940 667524857454854144 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... https://twitter.com/dog_rates/status/667524857... 12 10 None doggo https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7941 667524857454854144 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... https://twitter.com/dog_rates/status/667524857... 12 10 None floofer https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7942 667524857454854144 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... https://twitter.com/dog_rates/status/667524857... 12 10 None pupper https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7943 667524857454854144 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... https://twitter.com/dog_rates/status/667524857... 12 10 None puppo https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True 1198 1798
7944 667517642048163840 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... https://twitter.com/dog_rates/status/667517642... 8 10 Dook doggo https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7945 667517642048163840 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... https://twitter.com/dog_rates/status/667517642... 8 10 Dook floofer https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7946 667517642048163840 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... https://twitter.com/dog_rates/status/667517642... 8 10 Dook pupper https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7947 667517642048163840 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... https://twitter.com/dog_rates/status/667517642... 8 10 Dook puppo https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True 203 389
7948 667509364010450944 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... https://twitter.com/dog_rates/status/667509364... 12 10 None doggo https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7949 667509364010450944 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... https://twitter.com/dog_rates/status/667509364... 12 10 None floofer https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7950 667509364010450944 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... https://twitter.com/dog_rates/status/667509364... 12 10 None pupper https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7951 667509364010450944 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... https://twitter.com/dog_rates/status/667509364... 12 10 None puppo https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True 2272 7148
7952 667502640335572993 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... https://twitter.com/dog_rates/status/667502640... 11 10 Hall doggo https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7953 667502640335572993 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... https://twitter.com/dog_rates/status/667502640... 11 10 Hall floofer https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7954 667502640335572993 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... https://twitter.com/dog_rates/status/667502640... 11 10 Hall pupper https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7955 667502640335572993 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... https://twitter.com/dog_rates/status/667502640... 11 10 Hall puppo https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True 231 563
7956 667495797102141441 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... https://twitter.com/dog_rates/status/667495797... 9 10 Philippe doggo https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7957 667495797102141441 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... https://twitter.com/dog_rates/status/667495797... 9 10 Philippe floofer https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7958 667495797102141441 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... https://twitter.com/dog_rates/status/667495797... 9 10 Philippe pupper https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7959 667495797102141441 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... https://twitter.com/dog_rates/status/667495797... 9 10 Philippe puppo https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False 294 565
7960 667491009379606528 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... https://twitter.com/dog_rates/status/667491009... 7 10 None doggo https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7961 667491009379606528 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... https://twitter.com/dog_rates/status/667491009... 7 10 None floofer https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7962 667491009379606528 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... https://twitter.com/dog_rates/status/667491009... 7 10 None pupper https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7963 667491009379606528 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... https://twitter.com/dog_rates/status/667491009... 7 10 None puppo https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False 242 559
7964 667470559035432960 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... https://twitter.com/dog_rates/status/667470559... 11 10 a doggo https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7965 667470559035432960 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... https://twitter.com/dog_rates/status/667470559... 11 10 a floofer https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7966 667470559035432960 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... https://twitter.com/dog_rates/status/667470559... 11 10 a pupper https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7967 667470559035432960 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... https://twitter.com/dog_rates/status/667470559... 11 10 a puppo https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True 102 273
7968 667455448082227200 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... https://twitter.com/dog_rates/status/667455448... 7 10 Reese doggo https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7969 667455448082227200 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... https://twitter.com/dog_rates/status/667455448... 7 10 Reese floofer https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7970 667455448082227200 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... https://twitter.com/dog_rates/status/667455448... 7 10 Reese pupper https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7971 667455448082227200 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... https://twitter.com/dog_rates/status/667455448... 7 10 Reese puppo https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True 66 203
7972 667453023279554560 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake doggo https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7973 667453023279554560 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake floofer https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7974 667453023279554560 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake pupper https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7975 667453023279554560 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake puppo https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True 96 327
7976 667443425659232256 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... https://twitter.com/dog_rates/status/667443425... 6 10 None doggo https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7977 667443425659232256 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... https://twitter.com/dog_rates/status/667443425... 6 10 None floofer https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7978 667443425659232256 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... https://twitter.com/dog_rates/status/667443425... 6 10 None pupper https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7979 667443425659232256 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... https://twitter.com/dog_rates/status/667443425... 6 10 None puppo https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False 620 833
7980 667437278097252352 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... https://twitter.com/dog_rates/status/667437278... 10 10 None doggo https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7981 667437278097252352 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... https://twitter.com/dog_rates/status/667437278... 10 10 None floofer https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7982 667437278097252352 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... https://twitter.com/dog_rates/status/667437278... 10 10 None pupper https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7983 667437278097252352 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... https://twitter.com/dog_rates/status/667437278... 10 10 None puppo https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False 257 483
7984 667435689202614272 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm https://twitter.com/dog_rates/status/667435689... 12 10 None doggo https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7985 667435689202614272 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm https://twitter.com/dog_rates/status/667435689... 12 10 None floofer https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7986 667435689202614272 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm https://twitter.com/dog_rates/status/667435689... 12 10 None pupper https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7987 667435689202614272 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm https://twitter.com/dog_rates/status/667435689... 12 10 None puppo https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True 89 326
7988 667405339315146752 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... https://twitter.com/dog_rates/status/667405339... 7 10 Biden doggo https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7989 667405339315146752 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... https://twitter.com/dog_rates/status/667405339... 7 10 Biden floofer https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7990 667405339315146752 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... https://twitter.com/dog_rates/status/667405339... 7 10 Biden pupper https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7991 667405339315146752 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... https://twitter.com/dog_rates/status/667405339... 7 10 Biden puppo https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True 234 489
7992 667393430834667520 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... https://twitter.com/dog_rates/status/667393430... 8 10 Fwed doggo https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7993 667393430834667520 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... https://twitter.com/dog_rates/status/667393430... 8 10 Fwed floofer https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7994 667393430834667520 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... https://twitter.com/dog_rates/status/667393430... 8 10 Fwed pupper https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7995 667393430834667520 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... https://twitter.com/dog_rates/status/667393430... 8 10 Fwed puppo https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True 60 211
7996 667369227918143488 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... https://twitter.com/dog_rates/status/667369227... 10 10 None doggo https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
7997 667369227918143488 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... https://twitter.com/dog_rates/status/667369227... 10 10 None floofer https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
7998 667369227918143488 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... https://twitter.com/dog_rates/status/667369227... 10 10 None pupper https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
7999 667369227918143488 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... https://twitter.com/dog_rates/status/667369227... 10 10 None puppo https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False 173 385
8000 667211855547486208 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve doggo https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8001 667211855547486208 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve floofer https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8002 667211855547486208 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve pupper https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8003 667211855547486208 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve puppo https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True 258 516
8004 667200525029539841 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa doggo https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8005 667200525029539841 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa floofer https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8006 667200525029539841 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa pupper https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8007 667200525029539841 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa puppo https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True 282 658
8008 667192066997374976 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... https://twitter.com/dog_rates/status/667192066... 12 10 None doggo https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8009 667192066997374976 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... https://twitter.com/dog_rates/status/667192066... 12 10 None floofer https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8010 667192066997374976 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... https://twitter.com/dog_rates/status/667192066... 12 10 None pupper https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8011 667192066997374976 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... https://twitter.com/dog_rates/status/667192066... 12 10 None puppo https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True 115 414
8012 667188689915760640 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... https://twitter.com/dog_rates/status/667188689... 10 10 None doggo https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8013 667188689915760640 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... https://twitter.com/dog_rates/status/667188689... 10 10 None floofer https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8014 667188689915760640 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... https://twitter.com/dog_rates/status/667188689... 10 10 None pupper https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8015 667188689915760640 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... https://twitter.com/dog_rates/status/667188689... 10 10 None puppo https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False 449 784
8016 667182792070062081 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... https://twitter.com/dog_rates/status/667182792... 10 10 Timison doggo https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8017 667182792070062081 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... https://twitter.com/dog_rates/status/667182792... 10 10 Timison floofer https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8018 667182792070062081 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... https://twitter.com/dog_rates/status/667182792... 10 10 Timison pupper https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8019 667182792070062081 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... https://twitter.com/dog_rates/status/667182792... 10 10 Timison puppo https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True 6618 15075
8020 667177989038297088 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... https://twitter.com/dog_rates/status/667177989... 8 10 a doggo https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8021 667177989038297088 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... https://twitter.com/dog_rates/status/667177989... 8 10 a floofer https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8022 667177989038297088 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... https://twitter.com/dog_rates/status/667177989... 8 10 a pupper https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8023 667177989038297088 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... https://twitter.com/dog_rates/status/667177989... 8 10 a puppo https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True 58 200
8024 667176164155375616 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... https://twitter.com/dog_rates/status/667176164... 4 10 None doggo https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8025 667176164155375616 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... https://twitter.com/dog_rates/status/667176164... 4 10 None floofer https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8026 667176164155375616 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... https://twitter.com/dog_rates/status/667176164... 4 10 None pupper https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8027 667176164155375616 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... https://twitter.com/dog_rates/status/667176164... 4 10 None puppo https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True 484 640
8028 667174963120574464 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... https://twitter.com/dog_rates/status/667174963... 9 10 Clarence doggo https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8029 667174963120574464 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... https://twitter.com/dog_rates/status/667174963... 9 10 Clarence floofer https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8030 667174963120574464 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... https://twitter.com/dog_rates/status/667174963... 9 10 Clarence pupper https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8031 667174963120574464 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... https://twitter.com/dog_rates/status/667174963... 9 10 Clarence puppo https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True 88 262
8032 667171260800061440 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth doggo https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8033 667171260800061440 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth floofer https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8034 667171260800061440 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth pupper https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8035 667171260800061440 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth puppo https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True 97 235
8036 667165590075940865 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... https://twitter.com/dog_rates/status/667165590... 10 10 Churlie doggo https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8037 667165590075940865 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... https://twitter.com/dog_rates/status/667165590... 10 10 Churlie floofer https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8038 667165590075940865 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... https://twitter.com/dog_rates/status/667165590... 10 10 Churlie pupper https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8039 667165590075940865 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... https://twitter.com/dog_rates/status/667165590... 10 10 Churlie puppo https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True 1241 2819
8040 667160273090932737 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay doggo https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8041 667160273090932737 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay floofer https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8042 667160273090932737 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay pupper https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8043 667160273090932737 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay puppo https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True 66 268
8044 667152164079423490 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy doggo https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8045 667152164079423490 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy floofer https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8046 667152164079423490 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy pupper https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8047 667152164079423490 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy puppo https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True 18285 49720
8048 667138269671505920 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... https://twitter.com/dog_rates/status/667138269... 10 10 None doggo https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8049 667138269671505920 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... https://twitter.com/dog_rates/status/667138269... 10 10 None floofer https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8050 667138269671505920 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... https://twitter.com/dog_rates/status/667138269... 10 10 None pupper https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8051 667138269671505920 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... https://twitter.com/dog_rates/status/667138269... 10 10 None puppo https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True 2387 4851
8052 667119796878725120 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... https://twitter.com/dog_rates/status/667119796... 10 10 Gabe doggo https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8053 667119796878725120 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... https://twitter.com/dog_rates/status/667119796... 10 10 Gabe floofer https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8054 667119796878725120 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... https://twitter.com/dog_rates/status/667119796... 10 10 Gabe pupper https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8055 667119796878725120 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... https://twitter.com/dog_rates/status/667119796... 10 10 Gabe puppo https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True 135 346
8056 667090893657276420 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... https://twitter.com/dog_rates/status/667090893... 7 10 Clybe doggo https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8057 667090893657276420 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... https://twitter.com/dog_rates/status/667090893... 7 10 Clybe floofer https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8058 667090893657276420 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... https://twitter.com/dog_rates/status/667090893... 7 10 Clybe pupper https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8059 667090893657276420 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... https://twitter.com/dog_rates/status/667090893... 7 10 Clybe puppo https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True 132 349
8060 667073648344346624 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... https://twitter.com/dog_rates/status/667073648... 10 10 Dave doggo https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8061 667073648344346624 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... https://twitter.com/dog_rates/status/667073648... 10 10 Dave floofer https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8062 667073648344346624 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... https://twitter.com/dog_rates/status/667073648... 10 10 Dave pupper https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8063 667073648344346624 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... https://twitter.com/dog_rates/status/667073648... 10 10 Dave puppo https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True 134 425
8064 667065535570550784 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... https://twitter.com/dog_rates/status/667065535... 8 10 None doggo https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8065 667065535570550784 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... https://twitter.com/dog_rates/status/667065535... 8 10 None floofer https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8066 667065535570550784 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... https://twitter.com/dog_rates/status/667065535... 8 10 None pupper https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8067 667065535570550784 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... https://twitter.com/dog_rates/status/667065535... 8 10 None puppo https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False 51 175
8068 667062181243039745 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... https://twitter.com/dog_rates/status/667062181... 10 10 Keet doggo https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8069 667062181243039745 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... https://twitter.com/dog_rates/status/667062181... 10 10 Keet floofer https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8070 667062181243039745 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... https://twitter.com/dog_rates/status/667062181... 10 10 Keet pupper https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8071 667062181243039745 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... https://twitter.com/dog_rates/status/667062181... 10 10 Keet puppo https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True 57 227
8072 667044094246576128 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094... 12 10 None doggo https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8073 667044094246576128 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094... 12 10 None floofer https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8074 667044094246576128 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094... 12 10 None pupper https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8075 667044094246576128 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB https://twitter.com/dog_rates/status/667044094... 12 10 None puppo https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False 54 198
8076 667012601033924608 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... https://twitter.com/dog_rates/status/667012601... 9 10 Klevin doggo https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8077 667012601033924608 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... https://twitter.com/dog_rates/status/667012601... 9 10 Klevin floofer https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8078 667012601033924608 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... https://twitter.com/dog_rates/status/667012601... 9 10 Klevin pupper https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8079 667012601033924608 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... https://twitter.com/dog_rates/status/667012601... 9 10 Klevin puppo https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False 237 471
8080 666996132027977728 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... https://twitter.com/dog_rates/status/666996132... 10 10 Carll doggo https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8081 666996132027977728 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... https://twitter.com/dog_rates/status/666996132... 10 10 Carll floofer https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8082 666996132027977728 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... https://twitter.com/dog_rates/status/666996132... 10 10 Carll pupper https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8083 666996132027977728 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... https://twitter.com/dog_rates/status/666996132... 10 10 Carll puppo https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False 102 258
8084 666983947667116034 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... https://twitter.com/dog_rates/status/666983947... 11 10 a doggo https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8085 666983947667116034 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... https://twitter.com/dog_rates/status/666983947... 11 10 a floofer https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8086 666983947667116034 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... https://twitter.com/dog_rates/status/666983947... 11 10 a pupper https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8087 666983947667116034 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... https://twitter.com/dog_rates/status/666983947... 11 10 a puppo https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False 1040 2679
8088 666837028449972224 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... https://twitter.com/dog_rates/status/666837028... 3 10 None doggo https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8089 666837028449972224 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... https://twitter.com/dog_rates/status/666837028... 3 10 None floofer https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8090 666837028449972224 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... https://twitter.com/dog_rates/status/666837028... 3 10 None pupper https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8091 666837028449972224 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... https://twitter.com/dog_rates/status/666837028... 3 10 None puppo https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False 584 857
8092 666835007768551424 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... https://twitter.com/dog_rates/status/666835007... 10 10 None doggo https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8093 666835007768551424 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... https://twitter.com/dog_rates/status/666835007... 10 10 None floofer https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8094 666835007768551424 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... https://twitter.com/dog_rates/status/666835007... 10 10 None pupper https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8095 666835007768551424 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... https://twitter.com/dog_rates/status/666835007... 10 10 None puppo https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False 83 222
8096 666826780179869698 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... https://twitter.com/dog_rates/status/666826780... 12 10 None doggo https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8097 666826780179869698 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... https://twitter.com/dog_rates/status/666826780... 12 10 None floofer https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8098 666826780179869698 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... https://twitter.com/dog_rates/status/666826780... 12 10 None pupper https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8099 666826780179869698 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... https://twitter.com/dog_rates/status/666826780... 12 10 None puppo https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True 105 266
8100 666817836334096384 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... https://twitter.com/dog_rates/status/666817836... 9 10 Jeph doggo https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8101 666817836334096384 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... https://twitter.com/dog_rates/status/666817836... 9 10 Jeph floofer https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8102 666817836334096384 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... https://twitter.com/dog_rates/status/666817836... 9 10 Jeph pupper https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8103 666817836334096384 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... https://twitter.com/dog_rates/status/666817836... 9 10 Jeph puppo https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True 267 540
8104 666804364988780544 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... https://twitter.com/dog_rates/status/666804364... 8 10 Jockson doggo https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8105 666804364988780544 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... https://twitter.com/dog_rates/status/666804364... 8 10 Jockson floofer https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8106 666804364988780544 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... https://twitter.com/dog_rates/status/666804364... 8 10 Jockson pupper https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8107 666804364988780544 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... https://twitter.com/dog_rates/status/666804364... 8 10 Jockson puppo https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True 95 250
8108 666786068205871104 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... https://twitter.com/dog_rates/status/666786068... 2 10 None doggo https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8109 666786068205871104 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... https://twitter.com/dog_rates/status/666786068... 2 10 None floofer https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8110 666786068205871104 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... https://twitter.com/dog_rates/status/666786068... 2 10 None pupper https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8111 666786068205871104 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... https://twitter.com/dog_rates/status/666786068... 2 10 None puppo https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False 521 800
8112 666781792255496192 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... https://twitter.com/dog_rates/status/666781792... 10 10 a doggo https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8113 666781792255496192 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... https://twitter.com/dog_rates/status/666781792... 10 10 a floofer https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8114 666781792255496192 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... https://twitter.com/dog_rates/status/666781792... 10 10 a pupper https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8115 666781792255496192 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... https://twitter.com/dog_rates/status/666781792... 10 10 a puppo https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True 211 404
8116 666776908487630848 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... https://twitter.com/dog_rates/status/666776908... 5 10 Josep doggo https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8117 666776908487630848 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... https://twitter.com/dog_rates/status/666776908... 5 10 Josep floofer https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8118 666776908487630848 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... https://twitter.com/dog_rates/status/666776908... 5 10 Josep pupper https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8119 666776908487630848 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... https://twitter.com/dog_rates/status/666776908... 5 10 Josep puppo https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True 186 368
8120 666739327293083650 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... https://twitter.com/dog_rates/status/666739327... 10 10 Lugan doggo https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8121 666739327293083650 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... https://twitter.com/dog_rates/status/666739327... 10 10 Lugan floofer https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8122 666739327293083650 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... https://twitter.com/dog_rates/status/666739327... 10 10 Lugan pupper https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8123 666739327293083650 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... https://twitter.com/dog_rates/status/666739327... 10 10 Lugan puppo https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True 71 244
8124 666701168228331520 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... https://twitter.com/dog_rates/status/666701168... 8 10 a doggo https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8125 666701168228331520 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... https://twitter.com/dog_rates/status/666701168... 8 10 a floofer https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8126 666701168228331520 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... https://twitter.com/dog_rates/status/666701168... 8 10 a pupper https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8127 666701168228331520 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... https://twitter.com/dog_rates/status/666701168... 8 10 a puppo https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True 234 449
8128 666691418707132416 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... https://twitter.com/dog_rates/status/666691418... 8 10 Christoper doggo https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8129 666691418707132416 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... https://twitter.com/dog_rates/status/666691418... 8 10 Christoper floofer https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8130 666691418707132416 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... https://twitter.com/dog_rates/status/666691418... 8 10 Christoper pupper https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8131 666691418707132416 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... https://twitter.com/dog_rates/status/666691418... 8 10 Christoper puppo https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True 51 196
8132 666649482315059201 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... https://twitter.com/dog_rates/status/666649482... 4 10 None doggo https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8133 666649482315059201 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... https://twitter.com/dog_rates/status/666649482... 4 10 None floofer https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8134 666649482315059201 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... https://twitter.com/dog_rates/status/666649482... 4 10 None pupper https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8135 666649482315059201 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... https://twitter.com/dog_rates/status/666649482... 4 10 None puppo https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True 608 923
8136 666644823164719104 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy doggo https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8137 666644823164719104 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy floofer https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8138 666644823164719104 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy pupper https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8139 666644823164719104 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy puppo https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True 88 238
8140 666454714377183233 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory doggo https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8141 666454714377183233 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory floofer https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8142 666454714377183233 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory pupper https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8143 666454714377183233 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory puppo https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True 223 545
8144 666447344410484738 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... https://twitter.com/dog_rates/status/666447344... 9 10 Scout doggo https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8145 666447344410484738 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... https://twitter.com/dog_rates/status/666447344... 9 10 Scout floofer https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8146 666447344410484738 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... https://twitter.com/dog_rates/status/666447344... 9 10 Scout pupper https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8147 666447344410484738 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... https://twitter.com/dog_rates/status/666447344... 9 10 Scout puppo https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True 23 107
8148 666437273139982337 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... https://twitter.com/dog_rates/status/666437273... 7 10 None doggo https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8149 666437273139982337 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... https://twitter.com/dog_rates/status/666437273... 7 10 None floofer https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8150 666437273139982337 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... https://twitter.com/dog_rates/status/666437273... 7 10 None pupper https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8151 666437273139982337 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... https://twitter.com/dog_rates/status/666437273... 7 10 None puppo https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True 52 131
8152 666435652385423360 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... https://twitter.com/dog_rates/status/666435652... 10 10 None doggo https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8153 666435652385423360 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... https://twitter.com/dog_rates/status/666435652... 10 10 None floofer https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8154 666435652385423360 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... https://twitter.com/dog_rates/status/666435652... 10 10 None pupper https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8155 666435652385423360 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... https://twitter.com/dog_rates/status/666435652... 10 10 None puppo https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False 54 170
8156 666430724426358785 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... https://twitter.com/dog_rates/status/666430724... 6 10 None doggo https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8157 666430724426358785 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... https://twitter.com/dog_rates/status/666430724... 6 10 None floofer https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8158 666430724426358785 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... https://twitter.com/dog_rates/status/666430724... 6 10 None pupper https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8159 666430724426358785 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... https://twitter.com/dog_rates/status/666430724... 6 10 None puppo https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False 204 330
8160 666428276349472768 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... https://twitter.com/dog_rates/status/666428276... 7 10 None doggo https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8161 666428276349472768 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... https://twitter.com/dog_rates/status/666428276... 7 10 None floofer https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8162 666428276349472768 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... https://twitter.com/dog_rates/status/666428276... 7 10 None pupper https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8163 666428276349472768 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... https://twitter.com/dog_rates/status/666428276... 7 10 None puppo https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True 90 171
8164 666421158376562688 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... https://twitter.com/dog_rates/status/666421158... 12 10 None doggo https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8165 666421158376562688 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... https://twitter.com/dog_rates/status/666421158... 12 10 None floofer https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8166 666421158376562688 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... https://twitter.com/dog_rates/status/666421158... 12 10 None pupper https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8167 666421158376562688 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... https://twitter.com/dog_rates/status/666421158... 12 10 None puppo https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True 118 327
8168 666418789513326592 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... https://twitter.com/dog_rates/status/666418789... 10 10 Walter doggo https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8169 666418789513326592 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... https://twitter.com/dog_rates/status/666418789... 10 10 Walter floofer https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8170 666418789513326592 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... https://twitter.com/dog_rates/status/666418789... 10 10 Walter pupper https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8171 666418789513326592 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... https://twitter.com/dog_rates/status/666418789... 10 10 Walter puppo https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True 48 129
8172 666411507551481857 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... https://twitter.com/dog_rates/status/666411507... 2 10 quite doggo https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8173 666411507551481857 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... https://twitter.com/dog_rates/status/666411507... 2 10 quite floofer https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8174 666411507551481857 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... https://twitter.com/dog_rates/status/666411507... 2 10 quite pupper https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8175 666411507551481857 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... https://twitter.com/dog_rates/status/666411507... 2 10 quite puppo https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False 339 459
8176 666407126856765440 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... https://twitter.com/dog_rates/status/666407126... 7 10 a doggo https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8177 666407126856765440 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... https://twitter.com/dog_rates/status/666407126... 7 10 a floofer https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8178 666407126856765440 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... https://twitter.com/dog_rates/status/666407126... 7 10 a pupper https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8179 666407126856765440 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... https://twitter.com/dog_rates/status/666407126... 7 10 a puppo https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True 44 113
8180 666396247373291520 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... https://twitter.com/dog_rates/status/666396247... 9 10 None doggo https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8181 666396247373291520 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... https://twitter.com/dog_rates/status/666396247... 9 10 None floofer https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8182 666396247373291520 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... https://twitter.com/dog_rates/status/666396247... 9 10 None pupper https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8183 666396247373291520 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... https://twitter.com/dog_rates/status/666396247... 9 10 None puppo https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True 92 172
8184 666373753744588802 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... https://twitter.com/dog_rates/status/666373753... 11 10 None doggo https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8185 666373753744588802 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... https://twitter.com/dog_rates/status/666373753... 11 10 None floofer https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8186 666373753744588802 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... https://twitter.com/dog_rates/status/666373753... 11 10 None pupper https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8187 666373753744588802 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... https://twitter.com/dog_rates/status/666373753... 11 10 None puppo https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True 100 194
8188 666362758909284353 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... https://twitter.com/dog_rates/status/666362758... 6 10 None doggo https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8189 666362758909284353 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... https://twitter.com/dog_rates/status/666362758... 6 10 None floofer https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8190 666362758909284353 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... https://twitter.com/dog_rates/status/666362758... 6 10 None pupper https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8191 666362758909284353 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... https://twitter.com/dog_rates/status/666362758... 6 10 None puppo https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False 595 804
8192 666353288456101888 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... https://twitter.com/dog_rates/status/666353288... 8 10 None doggo https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8193 666353288456101888 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... https://twitter.com/dog_rates/status/666353288... 8 10 None floofer https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8194 666353288456101888 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... https://twitter.com/dog_rates/status/666353288... 8 10 None pupper https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8195 666353288456101888 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... https://twitter.com/dog_rates/status/666353288... 8 10 None puppo https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True 77 229
8196 666345417576210432 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... https://twitter.com/dog_rates/status/666345417... 10 10 None doggo https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8197 666345417576210432 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... https://twitter.com/dog_rates/status/666345417... 10 10 None floofer https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8198 666345417576210432 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... https://twitter.com/dog_rates/status/666345417... 10 10 None pupper https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8199 666345417576210432 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... https://twitter.com/dog_rates/status/666345417... 10 10 None puppo https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True 146 307
8200 666337882303524864 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... https://twitter.com/dog_rates/status/666337882... 9 10 an doggo https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8201 666337882303524864 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... https://twitter.com/dog_rates/status/666337882... 9 10 an floofer https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8202 666337882303524864 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... https://twitter.com/dog_rates/status/666337882... 9 10 an pupper https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8203 666337882303524864 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... https://twitter.com/dog_rates/status/666337882... 9 10 an puppo https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True 96 204
8204 666293911632134144 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... https://twitter.com/dog_rates/status/666293911... 3 10 a doggo https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8205 666293911632134144 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... https://twitter.com/dog_rates/status/666293911... 3 10 a floofer https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8206 666293911632134144 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... https://twitter.com/dog_rates/status/666293911... 3 10 a pupper https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8207 666293911632134144 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... https://twitter.com/dog_rates/status/666293911... 3 10 a puppo https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False 368 522
8208 666287406224695296 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... https://twitter.com/dog_rates/status/666287406... 1 2 an doggo https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8209 666287406224695296 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... https://twitter.com/dog_rates/status/666287406... 1 2 an floofer https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8210 666287406224695296 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... https://twitter.com/dog_rates/status/666287406... 1 2 an pupper https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8211 666287406224695296 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... https://twitter.com/dog_rates/status/666287406... 1 2 an puppo https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True 71 152
8212 666273097616637952 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW https://twitter.com/dog_rates/status/666273097... 11 10 None doggo https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8213 666273097616637952 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW https://twitter.com/dog_rates/status/666273097... 11 10 None floofer https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8214 666273097616637952 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW https://twitter.com/dog_rates/status/666273097... 11 10 None pupper https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8215 666273097616637952 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW https://twitter.com/dog_rates/status/666273097... 11 10 None puppo https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True 82 184
8216 666268910803644416 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... https://twitter.com/dog_rates/status/666268910... 10 10 None doggo https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8217 666268910803644416 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... https://twitter.com/dog_rates/status/666268910... 10 10 None floofer https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8218 666268910803644416 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... https://twitter.com/dog_rates/status/666268910... 10 10 None pupper https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8219 666268910803644416 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... https://twitter.com/dog_rates/status/666268910... 10 10 None puppo https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False 37 108
8220 666104133288665088 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... https://twitter.com/dog_rates/status/666104133... 1 10 None doggo https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8221 666104133288665088 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... https://twitter.com/dog_rates/status/666104133... 1 10 None floofer https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8222 666104133288665088 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... https://twitter.com/dog_rates/status/666104133... 1 10 None pupper https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8223 666104133288665088 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... https://twitter.com/dog_rates/status/666104133... 1 10 None puppo https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False 6871 14765
8224 666102155909144576 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... https://twitter.com/dog_rates/status/666102155... 11 10 None doggo https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8225 666102155909144576 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... https://twitter.com/dog_rates/status/666102155... 11 10 None floofer https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8226 666102155909144576 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... https://twitter.com/dog_rates/status/666102155... 11 10 None pupper https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8227 666102155909144576 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... https://twitter.com/dog_rates/status/666102155... 11 10 None puppo https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True 16 81
8228 666099513787052032 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... https://twitter.com/dog_rates/status/666099513... 8 10 None doggo https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8229 666099513787052032 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... https://twitter.com/dog_rates/status/666099513... 8 10 None floofer https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8230 666099513787052032 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... https://twitter.com/dog_rates/status/666099513... 8 10 None pupper https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8231 666099513787052032 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... https://twitter.com/dog_rates/status/666099513... 8 10 None puppo https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True 73 164
8232 666094000022159362 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... https://twitter.com/dog_rates/status/666094000... 9 10 None doggo https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8233 666094000022159362 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... https://twitter.com/dog_rates/status/666094000... 9 10 None floofer https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8234 666094000022159362 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... https://twitter.com/dog_rates/status/666094000... 9 10 None pupper https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8235 666094000022159362 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... https://twitter.com/dog_rates/status/666094000... 9 10 None puppo https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True 79 169
8236 666082916733198337 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... https://twitter.com/dog_rates/status/666082916... 6 10 None doggo https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8237 666082916733198337 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... https://twitter.com/dog_rates/status/666082916... 6 10 None floofer https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8238 666082916733198337 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... https://twitter.com/dog_rates/status/666082916... 6 10 None pupper https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8239 666082916733198337 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... https://twitter.com/dog_rates/status/666082916... 6 10 None puppo https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True 47 121
8240 666073100786774016 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... https://twitter.com/dog_rates/status/666073100... 10 10 None doggo https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8241 666073100786774016 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... https://twitter.com/dog_rates/status/666073100... 10 10 None floofer https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8242 666073100786774016 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... https://twitter.com/dog_rates/status/666073100... 10 10 None pupper https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8243 666073100786774016 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... https://twitter.com/dog_rates/status/666073100... 10 10 None puppo https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True 174 335
8244 666071193221509120 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... https://twitter.com/dog_rates/status/666071193... 9 10 None doggo https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8245 666071193221509120 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... https://twitter.com/dog_rates/status/666071193... 9 10 None floofer https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8246 666071193221509120 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... https://twitter.com/dog_rates/status/666071193... 9 10 None pupper https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8247 666071193221509120 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... https://twitter.com/dog_rates/status/666071193... 9 10 None puppo https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True 67 154
8248 666063827256086533 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... https://twitter.com/dog_rates/status/666063827... 10 10 the doggo https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8249 666063827256086533 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... https://twitter.com/dog_rates/status/666063827... 10 10 the floofer https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8250 666063827256086533 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... https://twitter.com/dog_rates/status/666063827... 10 10 the pupper https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8251 666063827256086533 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... https://twitter.com/dog_rates/status/666063827... 10 10 the puppo https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True 232 496
8252 666058600524156928 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... https://twitter.com/dog_rates/status/666058600... 8 10 the doggo https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8253 666058600524156928 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... https://twitter.com/dog_rates/status/666058600... 8 10 the floofer https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8254 666058600524156928 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... https://twitter.com/dog_rates/status/666058600... 8 10 the pupper https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8255 666058600524156928 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... https://twitter.com/dog_rates/status/666058600... 8 10 the puppo https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True 61 115
8256 666057090499244032 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... https://twitter.com/dog_rates/status/666057090... 9 10 a doggo https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8257 666057090499244032 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... https://twitter.com/dog_rates/status/666057090... 9 10 a floofer https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8258 666057090499244032 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... https://twitter.com/dog_rates/status/666057090... 9 10 a pupper https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8259 666057090499244032 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... https://twitter.com/dog_rates/status/666057090... 9 10 a puppo https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True 146 304
8260 666055525042405380 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... https://twitter.com/dog_rates/status/666055525... 10 10 a doggo https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8261 666055525042405380 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... https://twitter.com/dog_rates/status/666055525... 10 10 a floofer https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8262 666055525042405380 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... https://twitter.com/dog_rates/status/666055525... 10 10 a pupper https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8263 666055525042405380 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... https://twitter.com/dog_rates/status/666055525... 10 10 a puppo https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False 261 448
8264 666051853826850816 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... https://twitter.com/dog_rates/status/666051853... 2 10 an doggo https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8265 666051853826850816 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... https://twitter.com/dog_rates/status/666051853... 2 10 an floofer https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8266 666051853826850816 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... https://twitter.com/dog_rates/status/666051853... 2 10 an pupper https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8267 666051853826850816 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... https://twitter.com/dog_rates/status/666051853... 2 10 an puppo https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False 879 1253
8268 666050758794694657 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... https://twitter.com/dog_rates/status/666050758... 10 10 a doggo https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8269 666050758794694657 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... https://twitter.com/dog_rates/status/666050758... 10 10 a floofer https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8270 666050758794694657 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... https://twitter.com/dog_rates/status/666050758... 10 10 a pupper https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8271 666050758794694657 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... https://twitter.com/dog_rates/status/666050758... 10 10 a puppo https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True 60 136
8272 666049248165822465 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... https://twitter.com/dog_rates/status/666049248... 5 10 None doggo https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8273 666049248165822465 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... https://twitter.com/dog_rates/status/666049248... 5 10 None floofer https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8274 666049248165822465 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... https://twitter.com/dog_rates/status/666049248... 5 10 None pupper https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8275 666049248165822465 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... https://twitter.com/dog_rates/status/666049248... 5 10 None puppo https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True 41 111
8276 666044226329800704 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... https://twitter.com/dog_rates/status/666044226... 6 10 a doggo https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8277 666044226329800704 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... https://twitter.com/dog_rates/status/666044226... 6 10 a floofer https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8278 666044226329800704 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... https://twitter.com/dog_rates/status/666044226... 6 10 a pupper https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8279 666044226329800704 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... https://twitter.com/dog_rates/status/666044226... 6 10 a puppo https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True 147 311
8280 666033412701032449 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... https://twitter.com/dog_rates/status/666033412... 9 10 a doggo https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8281 666033412701032449 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... https://twitter.com/dog_rates/status/666033412... 9 10 a floofer https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8282 666033412701032449 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... https://twitter.com/dog_rates/status/666033412... 9 10 a pupper https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8283 666033412701032449 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... https://twitter.com/dog_rates/status/666033412... 9 10 a puppo https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True 47 128
8284 666029285002620928 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... https://twitter.com/dog_rates/status/666029285... 7 10 a doggo https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8285 666029285002620928 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... https://twitter.com/dog_rates/status/666029285... 7 10 a floofer https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8286 666029285002620928 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... https://twitter.com/dog_rates/status/666029285... 7 10 a pupper https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8287 666029285002620928 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... https://twitter.com/dog_rates/status/666029285... 7 10 a puppo https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True 48 132
8288 666020888022790149 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... https://twitter.com/dog_rates/status/666020888... 8 10 None doggo https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535
8289 666020888022790149 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... https://twitter.com/dog_rates/status/666020888... 8 10 None floofer https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535
8290 666020888022790149 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... https://twitter.com/dog_rates/status/666020888... 8 10 None pupper https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535
8291 666020888022790149 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... https://twitter.com/dog_rates/status/666020888... 8 10 None puppo https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True 532 2535

8292 rows × 22 columns

Test

In [50]:
print(main_df.isnull().sum())
tweet_id              0
timestamp             0
source                0
text                  0
expanded_urls         0
rating_numerator      0
rating_denominator    0
name                  0
dog_stage             0
jpg_url               0
img_num               0
p1                    0
p1_conf               0
p1_dog                0
p2                    0
p2_conf               0
p2_dog                0
p3                    0
p3_conf               0
p3_dog                0
retweet_count         0
favorite_count        0
dtype: int64
In [51]:
main_df.shape
Out[51]:
(8292, 22)
In [52]:
main_df.head()
Out[52]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
1 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
2 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
3 892420643555336193 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
4 892177421306343426 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819

Define

  • convert timestamp from object to datetime
  • convert dog_state_cat to categorical variable
  • convert tweet_id to object

Code

In [53]:
main_df['timestamp'] = pd.to_datetime(main_df['timestamp'], format='%Y-%m-%d %H:%M:%S')
main_df['dog_stage'] = main_df['dog_stage'].astype('category')
main_df['tweet_id'] = main_df['tweet_id'].astype('object')
main_df['retweet_count'] = main_df['retweet_count'].astype('int64')
main_df['favorite_count'] = main_df['favorite_count'].astype('int64')
In [ ]:
 

Test

In [54]:
main_df.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 8292 entries, 0 to 8291
Data columns (total 22 columns):
tweet_id              8292 non-null object
timestamp             8292 non-null datetime64[ns]
source                8292 non-null object
text                  8292 non-null object
expanded_urls         8292 non-null object
rating_numerator      8292 non-null int64
rating_denominator    8292 non-null int64
name                  8292 non-null object
dog_stage             8292 non-null category
jpg_url               8292 non-null object
img_num               8292 non-null int64
p1                    8292 non-null object
p1_conf               8292 non-null float64
p1_dog                8292 non-null bool
p2                    8292 non-null object
p2_conf               8292 non-null float64
p2_dog                8292 non-null bool
p3                    8292 non-null object
p3_conf               8292 non-null float64
p3_dog                8292 non-null bool
retweet_count         8292 non-null int64
favorite_count        8292 non-null int64
dtypes: bool(3), category(1), datetime64[ns](1), float64(3), int64(5), object(9)
memory usage: 1.2+ MB

Define

  • remove wrong dog names
  • Extract correct numerator and denominator rfrom text column
  • standardizing to a denominator of 10 for groups of dogs

Code

In [55]:
list(main_df.name[main_df.name.str.islower()].unique())
Out[55]:
['such',
 'a',
 'quite',
 'one',
 'incredibly',
 'an',
 'very',
 'just',
 'my',
 'not',
 'his',
 'getting',
 'this',
 'unacceptable',
 'all',
 'infuriating',
 'the',
 'actually',
 'by',
 'officially',
 'light',
 'space']
In [56]:
# remove wrong dog names
words =list(main_df.name[main_df.name.str.islower()].unique())
main_df['name'] = main_df['name'].apply(lambda x : np.nan if x in words else x)
main_df['name'] = main_df['name'].apply(lambda x : np.nan if x =='None' else x)
main_df = main_df.dropna()
main_df.name.isna().sum()
Out[56]:
0
In [57]:
# using regex to extract the correct dog rating
ratings = main_df.text.str.extract('((?:\d+\.)?\d+)\/(\d+)', expand=True)
In [58]:
main_df.rating_numerator = ratings
main_df['rating_numerator'] = main_df['rating_numerator'].astype('float64')
In [59]:
# standardizing to a denominator of 10 for groups of dogs:

rating_num = [int(round(num/(denom/10)))  if denom != 10 and num/denom <= 2 
                           else num for num, denom in zip(main_df['rating_numerator'], main_df['rating_denominator'])]
rating_denom = [10 if denom != 10 and num/denom <= 2
                             else denom for num, denom in zip(main_df['rating_numerator'], main_df['rating_denominator'])]
main_df['rating_numerator'] = rating_num
main_df['rating_denominator'] = rating_denom

main_df = main_df.drop(main_df[((main_df['rating_denominator'] != 10) | (main_df['rating_numerator'] > 20))].index)

Test

In [60]:
main_df.head(20)
Out[60]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
1 892420643555336193 2017-08-01 16:23:56 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
2 892420643555336193 2017-08-01 16:23:56 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
3 892420643555336193 2017-08-01 16:23:56 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
4 892177421306343426 2017-08-01 00:17:27 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
5 892177421306343426 2017-08-01 00:17:27 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly floofer https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
6 892177421306343426 2017-08-01 00:17:27 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly pupper https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
7 892177421306343426 2017-08-01 00:17:27 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly puppo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
8 891815181378084864 2017-07-31 00:18:03 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12.0 10 Archie doggo https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 0.078253 True kelpie 0.031379 True 4328 25461
9 891815181378084864 2017-07-31 00:18:03 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12.0 10 Archie floofer https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 0.078253 True kelpie 0.031379 True 4328 25461
10 891815181378084864 2017-07-31 00:18:03 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12.0 10 Archie pupper https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 0.078253 True kelpie 0.031379 True 4328 25461
11 891815181378084864 2017-07-31 00:18:03 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12.0 10 Archie puppo https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 0.078253 True kelpie 0.031379 True 4328 25461
12 891689557279858688 2017-07-30 15:58:51 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13.0 10 Darla doggo https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 0.168086 True spatula 0.040836 False 8964 42908
13 891689557279858688 2017-07-30 15:58:51 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13.0 10 Darla floofer https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 0.168086 True spatula 0.040836 False 8964 42908
14 891689557279858688 2017-07-30 15:58:51 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13.0 10 Darla pupper https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 0.168086 True spatula 0.040836 False 8964 42908
15 891689557279858688 2017-07-30 15:58:51 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13.0 10 Darla puppo https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 0.168086 True spatula 0.040836 False 8964 42908
16 891327558926688256 2017-07-29 16:00:24 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12.0 10 Franklin doggo https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 0.225770 True German_short-haired_pointer 0.175219 True 9774 41048
17 891327558926688256 2017-07-29 16:00:24 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12.0 10 Franklin floofer https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 0.225770 True German_short-haired_pointer 0.175219 True 9774 41048
18 891327558926688256 2017-07-29 16:00:24 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12.0 10 Franklin pupper https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 0.225770 True German_short-haired_pointer 0.175219 True 9774 41048
19 891327558926688256 2017-07-29 16:00:24 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12.0 10 Franklin puppo https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 0.225770 True German_short-haired_pointer 0.175219 True 9774 41048
In [61]:
main_df.name.value_counts()
Out[61]:
Charlie           44
Tucker            40
Cooper            40
Penny             40
Lucy              40
Oliver            40
Sadie             32
Lola              32
Winston           32
Bo                32
Daisy             28
Toby              28
Rusty             24
Bella             24
Koda              24
Stanley           24
Bailey            24
Scout             24
Dave              24
Jax               24
Milo              24
Leo               20
Alfie             20
Louis             20
Oscar             20
Larry             20
Chester           20
Buddy             20
Bear              16
Bentley           16
Scooter           16
Phil              16
Reggie            16
Derek             16
Sunny             16
Bruce             16
Dexter            16
Chip              16
Gary              16
Clark             16
Finn              16
Cassie            16
Jack              16
Duke              16
Clarence          16
Maggie            16
Gus               16
Winnie            16
Oakley            16
Ruby              16
Loki              16
Jerry             16
Brody             16
Archie            16
Sophie            16
George            16
Walter            16
Ellie             12
Maximus           12
Vincent           12
Jeffrey           12
Rosie             12
Malcolm           12
Samson            12
Gerald            12
Wyatt             12
Colby             12
Frankie           12
Kyle              12
Moose             12
Max               12
Paisley           12
Waffles           12
Louie             12
Sammy             12
Calvin            12
Gizmo             12
Otis              12
Lily              12
Beau              12
Sebastian         12
Boomer            12
Olive             12
Nala              12
Mia               12
Wallace           12
Peaches           12
Sampson           12
Zoey              12
Hank              12
Earl              12
Jimothy           12
Reese             12
Shadow            12
Riley             12
Zeke              12
Steven            12
Wilson            12
Bell               8
Chuckles           8
Sugar              8
Ava                8
Rubio              8
Juno               8
Aspen              8
Oliviér            8
Kenneth            8
Phred              8
Raymond            8
Thumas             8
Ollie              8
Panda              8
Calbert            8
Hobbes             8
Patrick            8
Ash                8
Chipson            8
Curtis             8
Arnie              8
Jimison            8
Franklin           8
Lilly              8
Klein              8
Alice              8
Sansa              8
Linda              8
Coops              8
Happy              8
Kreg               8
Griffin            8
Herm               8
Piper              8
Rufus              8
Roosevelt          8
Eli                8
Mister             8
Klevin             8
Dash               8
Smokey             8
Rizzy              8
Sarge              8
Yogi               8
Opal               8
Herald             8
Moreton            8
Luna               8
Doug               8
Chet               8
Davey              8
Odie               8
Paull              8
Terry              8
Coco               8
Jiminy             8
Keith              8
Django             8
Kirby              8
Elliot             8
Baxter             8
Cash               8
Albert             8
Rocky              8
Jeph               8
Harper             8
Theodore           8
Chelsea            8
CeCe               8
Bisquick           8
Luca               8
Astrid             8
Atlas              8
Phineas            8
Lenny              8
Bob                8
Benji              8
Gabe               8
Indie              8
Marley             8
Crystal            8
Ken                8
Lincoln            8
Penelope           8
Rory               8
Tyr                8
Solomon            8
Dakota             8
Frank              8
Misty              8
Abby               8
Kevin              8
Jackson            8
Axel               8
Carl               8
Butter             8
Trooper            8
Charles            8
Lennon             8
Chompsky           8
Percy              8
Bernie             8
Fiona              8
Wally              8
Watson             8
Kreggory           8
Brad               8
Albus              8
Neptune            8
Remington          8
Churlie            8
Belle              8
Moe                8
Pippa              8
Finley             8
Ted                8
Harold             8
Hammond            8
Stubert            8
Cali               8
Pickles            8
Hunter             8
Romeo              8
Titan              8
Gromit             8
Kenny              8
Lou                8
Sandy              8
Betty              8
Reginald           8
Hercules           8
Cody               8
Doc                8
Bubbles            8
Jesse              8
Benedict           8
Nelly              8
Flávio             8
Stephan            8
Maxaroni           8
Lorenzo            8
Kilo               8
Olivia             8
Cupcake            8
Mollie             4
Peanut             4
Timber             4
Goose              4
Farfle             4
Michelangelope     4
Millie             4
Kallie             4
Shawwn             4
Brooks             4
Orion              4
Arnold             4
Harlso             4
Carll              4
Glacier            4
Sojourner          4
Nimbus             4
Lolo               4
Finnegus           4
Dotsy              4
JD                 4
Ronnie             4
Tuco               4
Trip               4
Leela              4
Boots              4
Smiley             4
Eazy               4
Rumble             4
Carly              4
Herschel           4
Harry              4
Mark               4
Callie             4
Alexander          4
Clarq              4
Brandi             4
Pupcasso           4
Richie             4
Duchess            4
Donny              4
Odin               4
Ashleigh           4
Loomis             4
Tonks              4
Tassy              4
Cannon             4
Lillie             4
Fletcher           4
Opie               4
Brudge             4
Kendall            4
Al                 4
Theo               4
Lucia              4
Kaia               4
Moofasa            4
Stephanus          4
Koko               4
BeBe               4
Hubertson          4
Gidget             4
Bloop              4
Strudel            4
Stella             4
Emmie              4
Sprinkles          4
Newt               4
Shadoe             4
Sundance           4
Acro               4
Leonard            4
Chadrick           4
Traviss            4
Wiggles            4
Tango              4
Birf               4
Livvie             4
Sailer             4
Luther             4
Meyer              4
Ridley             4
Blakely            4
Strider            4
Mairi              4
Poppy              4
Flash              4
Jay                4
Chloe              4
Aldrick            4
Ace                4
Spanky             4
Fizz               4
Marvin             4
Jaycob             4
Brat               4
Lance              4
Enchilada          4
Vinnie             4
Willem             4
Crumpet            4
Craig              4
Taco               4
Anna               4
Jerome             4
Ed                 4
Shnuggles          4
Rolf               4
Pip                4
Lulu               4
Raphael            4
Noah               4
Nigel              4
Asher              4
Tayzie             4
Gin                4
Lucky              4
Harvey             4
Crawford           4
Rinna              4
Aqua               4
Marlee             4
Danny              4
Iggy               4
Beemo              4
Crimson            4
Rodman             4
Tobi               4
Philbert           4
Reptar             4
Gustav             4
Gerbald            4
Vince              4
Arlen              4
Bubba              4
Snoop              4
Jo                 4
Noosh              4
Alfy               4
Ronduh             4
Wishes             4
Jazzy              4
Pilot              4
Gustaf             4
Creg               4
Franq              4
Ito                4
Duddles            4
Jeffrie            4
Doobert            4
Mona               4
Maude              4
Bronte             4
Augie              4
Kobe               4
Brady              4
Gordon             4
Dex                4
Hurley             4
Malikai            4
Sephie             4
Herb               4
Eve                4
Venti              4
Ralf               4
Bobb               4
Devón              4
Tupawc             4
Tyrus              4
Jarvis             4
Mason              4
Boston             4
Apollo             4
Adele              4
Grady              4
Covach             4
Tuck               4
Claude             4
Mattie             4
Meatball           4
Karma              4
Jordy              4
Miley              4
Comet              4
Karll              4
Rambo              4
Sora               4
Bungalo            4
Sailor             4
Holly              4
Kloey              4
Josep              4
Godi               4
Jomathan           4
Georgie            4
Eevee              4
Binky              4
Sandra             4
Mauve              4
Ozzy               4
Zeek               4
Schnozz            4
Zuzu               4
Shelby             4
Pippin             4
Dug                4
Sam                4
Kial               4
Butters            4
Swagger            4
Naphaniel          4
Barney             4
Geoff              4
Jazz               4
Derby              4
Biden              4
Tito               4
Erik               4
Ziva               4
Rey                4
Rodney             4
Hamrick            4
Akumi              4
William            4
Carter             4
Thor               4
Alexanderson       4
Perry              4
Fred               4
Dwight             4
Bilbo              4
Stu                4
Alf                4
Rufio              4
Lassie             4
Shikha             4
Dale               4
Freddery           4
Lenox              4
Iroh               4
Ralphus            4
Skittles           4
Jessiga            4
Grizzie            4
Bonaparte          4
Dante              4
Dudley             4
Ruffles            4
Jangle             4
Pablo              4
Cora               4
Jackie             4
Pinot              4
Clifford           4
Norman             4
Aubie              4
Kara               4
Ralph              4
Lilli              4
Toffee             4
Sprout             4
Amy                4
Mya                4
Jebberson          4
Bertson            4
Billy              4
Amber              4
Blitz              4
Kollin             4
Caryl              4
Rumpole            4
Blanket            4
Pete               4
Kuyu               4
Jett               4
Andru              4
Jennifur           4
Edd                4
Humphrey           4
Tripp              4
Coleman            4
Crouton            4
Tebow              4
Barclay            4
Willy              4
Emma               4
Berb               4
Billl              4
Mimosa             4
Nugget             4
Lupe               4
Winifred           4
Mike               4
Bruno              4
Bobble             4
Kellogg            4
Kaiya              4
Jeffri             4
Hall               4
DonDon             4
Batdog             4
Gunner             4
Karl               4
Mojo               4
Timison            4
Aiden              4
Arya               4
Colin              4
Mabel              4
Kayla              4
Beebop             4
Pavlov             4
Sobe               4
Ulysses            4
Rooney             4
Huck               4
Chase              4
Juckson            4
Laika              4
Hazel              4
Harrison           4
Walker             4
Grizz              4
Rueben             4
Schnitzel          4
Storkson           4
Saydee             4
Fynn               4
Fiji               4
Ole                4
Chesterson         4
Jimbo              4
Clarkus            4
Edmund             4
Tedders            4
Robin              4
Stefan             4
Rocco              4
Pipsy              4
Oreo               4
Sierra             4
Shiloh             4
Torque             4
Olaf               4
Superpup           4
Ike                4
Layla              4
Kanu               4
Bradlay            4
Philippe           4
Dutch              4
Dylan              4
Cedrick            4
Logan              4
Vixen              4
Evy                4
Chesney            4
Pumpkin            4
Remy               4
Severus            4
Flurpson           4
Julio              4
Champ              4
Mitch              4
Bode               4
Pawnd              4
Hero               4
Kenzie             4
Lorelei            4
Snoopy             4
Fido               4
Stormy             4
Andy               4
Chaz               4
Charleson          4
Mutt               4
Lipton             4
Timmy              4
Gert               4
Charl              4
Cuddles            4
Jessifer           4
Chubbs             4
Rilo               4
Scruffers          4
Bodie              4
Buddah             4
Levi               4
Sid                4
Eleanor            4
Yoda               4
Heinrich           4
Joey               4
Tater              4
Darby              4
Snickers           4
Rontu              4
Furzey             4
Jim                4
Monster            4
Jareld             4
Major              4
Bowie              4
Miguel             4
Bluebert           4
Bradley            4
Milky              4
Maddie             4
Tino               4
Bobbay             4
Diogi              4
Darla              4
Cecil              4
River              4
Lacy               4
Zoe                4
Jiminus            4
Glenn              4
Kevon              4
Sunshine           4
Striker            4
Carper             4
Blue               4
Suki               4
Tess               4
Brandy             4
Blu                4
Chuq               4
Kane               4
Fillup             4
Terrenth           4
DayZ               4
Patch              4
Murphy             4
Rover              4
Dewey              4
Brandonald         4
Einstein           4
Emmy               4
Molly              4
Napolean           4
Kyro               4
Blipson            4
Cilantro           4
Darrel             4
Katie              4
Lambeau            4
Shakespeare        4
Tom                4
Dido               4
Huxley             4
Baron              4
Ozzie              4
Ralphson           4
Frönq              4
Cheesy             4
Randall            4
Ralphie            4
Fwed               4
Jaspers            4
Maks               4
Obi                4
Bert               4
Clyde              4
Dot                4
Tiger              4
Kathmandu          4
Horace             4
Jersey             4
Ginger             4
Autumn             4
Baloo              4
Obie               4
Edgar              4
Laela              4
Sky                4
Stewie             4
Chuck              4
Willow             4
Bobby              4
Cleopatricia       4
Zooey              4
Bruiser            4
Damon              4
Brutus             4
Monkey             4
Divine             4
Ralpher            4
Tanner             4
Trigger            4
Benny              4
Aja                4
Angel              4
Dietrich           4
Lilah              4
Joshwa             4
Antony             4
Bloo               4
Canela             4
Sparky             4
Sage               4
Banditt            4
Liam               4
Travis             4
Stark              4
Trevith            4
Mary               4
Brownie            4
Samsom             4
Dixie              4
Tycho              4
Keet               4
Cupid              4
Rose               4
Wesley             4
Spark              4
Corey              4
Monty              4
Eugene             4
Harnold            4
Cal                4
Deacon             4
Socks              4
Tommy              4
Filup              4
Dawn               4
Julius             4
Pubert             4
Godzilla           4
Brockly            4
Jarod              4
Reagan             4
Henry              4
Buckley            4
Kody               4
Griswold           4
Tug                4
Dook               4
Shaggy             4
Anthony            4
Kingsley           4
Hector             4
Durg               4
Willie             4
Nida               4
Skye               4
Kawhi              4
Halo               4
Arlo               4
Daniel             4
Roscoe             4
Tyrone             4
Gilbert            4
Ester              4
Scott              4
Lili               4
Dobby              4
Beya               4
Eriq               4
Tilly              4
Lizzie             4
Leonidas           4
Oshie              4
Carbon             4
Dallas             4
Timofy             4
Nico               4
Siba               4
Zara               4
Nollie             4
Terrance           4
Ricky              4
Steve              4
O                  4
Cermet             4
Hermione           4
Chevy              4
Jockson            4
Bayley             4
Berkeley           4
Burt               4
Rupert             4
Shooter            4
Lugan              4
Kulet              4
Bauer              4
Bones              4
Ralphé             4
Keurig             4
Sweet              4
Beckham            4
Cheryl             4
Mac                4
Mosby              4
Hanz               4
Clybe              4
Marty              4
Taz                4
Pepper             4
Tove               4
Howie              4
Maya               4
Snicku             4
Fabio              4
Ivar               4
Amélie             4
Grey               4
Pancake            4
Geno               4
Atticus            4
Anakin             4
Banjo              4
Puff               4
Kirk               4
Tessa              4
Stuart             4
Kota               4
Rorie              4
Jameson            4
Mingus             4
General            4
Petrick            4
Ambrose            4
Bookstore          4
Alejandro          4
Margo              4
Maxwell            4
Emanuel            4
Pluto              4
Maisey             4
Jamesy             4
Longfellow         4
Chef               4
Sonny              4
Link               4
Christoper         4
Staniel            4
Grizzwald          4
Coopson            4
Mack               4
Brian              4
Sully              4
Tedrick            4
Simba              4
Ebby               4
Meera              4
Wafer              4
Gòrdón             4
Mo                 4
Jonah              4
Ron                4
Jeb                4
Kramer             4
Jed                4
Vinscent           4
Jeremy             4
Rizzo              4
Genevieve          4
Florence           4
Remus              4
Ben                4
Mookie             4
Zeus               4
Rhino              4
Quinn              4
Marq               4
Todo               4
Dunkin             4
Goliath            4
Kona               4
Spencer            4
Name: name, dtype: int64

Define

  • extract the source the tweet was posted from in the source column

code

In [62]:
href = main_df["source"].str.split('"', expand = True)[1].str.split('/',expand=True)[4]
href
main_df["source"] = href

Test

In [63]:
main_df.source.value_counts()
Out[63]:
iphone       5480
tweetdeck      32
Name: source, dtype: int64
In [64]:
main_df.head()
Out[64]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
1 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
2 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
3 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
4 892177421306343426 2017-08-01 00:17:27 iphone This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
In [65]:
main_df = main_df.dropna()

Saving into the main dataframe, Analysis, Visualization and communicating findings

In [66]:
# storing main dataframe as csv
main_df.to_csv('main_df.csv', encoding='utf-8', index=False)
In [67]:
# Read in the created data
df = pd.read_csv('main_df.csv')
df.head()
Out[67]:
tweet_id timestamp source text expanded_urls rating_numerator rating_denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favorite_count
0 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas doggo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
1 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas floofer https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
2 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas pupper https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
3 892420643555336193 2017-08-01 16:23:56 iphone This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13.0 10 Phineas puppo https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 0.085851 False banana 0.076110 False 8853 39467
4 892177421306343426 2017-08-01 00:17:27 iphone This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13.0 10 Tilly doggo https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True papillon 0.068957 True 6514 33819
In [68]:
df.p1.value_counts()
Out[68]:
golden_retriever                  388
Labrador_retriever                264
Pembroke                          252
Chihuahua                         236
pug                               164
chow                              136
toy_poodle                        112
Samoyed                           100
Pomeranian                         96
malamute                           92
French_bulldog                     88
cocker_spaniel                     84
Siberian_husky                     76
miniature_pinscher                 68
Staffordshire_bullterrier          68
Chesapeake_Bay_retriever           64
Cardigan                           64
seat_belt                          64
Shih-Tzu                           60
Shetland_sheepdog                  56
German_shepherd                    56
beagle                             52
Eskimo_dog                         48
teddy                              44
Pekinese                           44
Border_collie                      40
Italian_greyhound                  40
vizsla                             40
basset                             40
collie                             40
American_Staffordshire_terrier     40
Bernese_mountain_dog               36
boxer                              36
Lakeland_terrier                   36
Rottweiler                         36
Maltese_dog                        36
Airedale                           36
Old_English_sheepdog               36
schipperke                         36
Doberman                           32
kelpie                             32
kuvasz                             32
Great_Pyrenees                     32
Blenheim_spaniel                   32
dingo                              28
Boston_bull                        28
Norwegian_elkhound                 28
whippet                            28
tub                                28
miniature_poodle                   28
malinois                           24
bath_towel                         24
dalmatian                          24
English_setter                     24
Border_terrier                     24
West_Highland_white_terrier        24
standard_poodle                    24
papillon                           24
Yorkshire_terrier                  24
Brittany_spaniel                   24
Great_Dane                         24
Siamese_cat                        24
Saint_Bernard                      20
Norfolk_terrier                    20
English_springer                   20
ice_bear                           20
bloodhound                         20
soft-coated_wheaten_terrier        20
tennis_ball                        20
web_site                           16
porcupine                          16
doormat                            16
hamster                            16
bluetick                           16
Walker_hound                       16
miniature_schnauzer                16
keeshond                           16
swing                              16
minivan                            16
borzoi                             16
Irish_setter                       16
bull_mastiff                       16
Dandie_Dinmont                     16
llama                              16
window_shade                       12
jack-o'-lantern                    12
ram                                12
home_theater                       12
Weimaraner                         12
Irish_water_spaniel                12
shopping_cart                      12
Mexican_hairless                   12
barrow                             12
hog                                12
curly-coated_retriever             12
motor_scooter                      12
cairn                              12
German_short-haired_pointer        12
Tibetan_terrier                    12
Bedlington_terrier                 12
Saluki                             12
refrigerator                       12
flat-coated_retriever              12
dishwasher                         12
Newfoundland                       12
hippopotamus                       12
bathtub                            12
Norwich_terrier                    12
Afghan_hound                       12
car_mirror                         12
mousetrap                          12
street_sign                         8
Australian_terrier                  8
acorn_squash                        8
Greater_Swiss_Mountain_dog          8
muzzle                              8
wombat                              8
redbone                             8
Tibetan_mastiff                     8
balloon                             8
Leonberg                            8
toy_terrier                         8
seashore                            8
Christmas_stocking                  8
Scottish_deerhound                  8
washbasin                           8
Irish_terrier                       8
badger                              8
wire-haired_fox_terrier             8
Sussex_spaniel                      8
snorkel                             8
Welsh_springer_spaniel              8
space_heater                        8
jigsaw_puzzle                       8
Arctic_fox                          8
hyena                               8
ox                                  8
patio                               8
hermit_crab                         8
bubble                              8
bow_tie                             8
komondor                            8
wallaby                             8
wood_rabbit                         8
Lhasa                               8
sea_lion                            8
gas_pump                            8
Ibizan_hound                        8
basenji                             8
cash_machine                        8
Rhodesian_ridgeback                 8
laptop                              8
giant_schnauzer                     8
brown_bear                          8
prison                              8
ski_mask                            8
guinea_pig                          8
sliding_door                        4
sorrel                              4
ostrich                             4
shower_curtain                      4
Scotch_terrier                      4
Gordon_setter                       4
pedestal                            4
Egyptian_cat                        4
African_crocodile                   4
Appenzeller                         4
dhole                               4
microwave                           4
china_cabinet                       4
sandbar                             4
otter                               4
maillot                             4
convertible                         4
bannister                           4
picket_fence                        4
slug                                4
tricycle                            4
tick                                4
starfish                            4
bow                                 4
rotisserie                          4
carton                              4
carousel                            4
triceratops                         4
toyshop                             4
bookcase                            4
piggy_bank                          4
beaver                              4
coral_reef                          4
meerkat                             4
stove                               4
shield                              4
remote_control                      4
paper_towel                         4
alp                                 4
fountain                            4
Brabancon_griffon                   4
vacuum                              4
basketball                          4
pool_table                          4
espresso                            4
groenendael                         4
park_bench                          4
mud_turtle                          4
axolotl                             4
frilled_lizard                      4
leopard                             4
bustard                             4
standard_schnauzer                  4
minibus                             4
cougar                              4
rapeseed                            4
quilt                               4
sunglasses                          4
mortarboard                         4
cup                                 4
wooden_spoon                        4
agama                               4
hummingbird                         4
bighorn                             4
coil                                4
American_black_bear                 4
dogsled                             4
silky_terrier                       4
canoe                               4
giant_panda                         4
crash_helmet                        4
dining_table                        4
birdhouse                           4
timber_wolf                         4
wild_boar                           4
bee_eater                           4
ice_lolly                           4
sulphur-crested_cockatoo            4
washer                              4
clumber                             4
lion                                4
terrapin                            4
grey_fox                            4
orange                              4
boathouse                           4
stone_wall                          4
lawn_mower                          4
earthstar                           4
Loafer                              4
tailed_frog                         4
African_grey                        4
white_wolf                          4
cowboy_boot                         4
long-horned_beetle                  4
cowboy_hat                          4
common_iguana                       4
grille                              4
water_buffalo                       4
hand_blower                         4
comic_book                          4
goose                               4
toilet_tissue                       4
nail                                4
hay                                 4
Japanese_spaniel                    4
hotdog                              4
radio_telescope                     4
leatherback_turtle                  4
cuirass                             4
marmot                              4
harp                                4
banana                              4
bison                               4
guenon                              4
barbell                             4
lynx                                4
tusker                              4
pitcher                             4
damselfly                           4
briard                              4
tabby                               4
weasel                              4
leaf_beetle                         4
snail                               4
prayer_rug                          4
ping-pong_ball                      4
skunk                               4
koala                               4
crane                               4
lakeside                            4
Name: p1, dtype: int64
In [69]:
df.shape
Out[69]:
(5512, 22)
In [70]:
# lets look at the datatypes
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 5512 entries, 0 to 5511
Data columns (total 22 columns):
tweet_id              5512 non-null int64
timestamp             5512 non-null object
source                5512 non-null object
text                  5512 non-null object
expanded_urls         5512 non-null object
rating_numerator      5512 non-null float64
rating_denominator    5512 non-null int64
name                  5512 non-null object
dog_stage             5512 non-null object
jpg_url               5512 non-null object
img_num               5512 non-null int64
p1                    5512 non-null object
p1_conf               5512 non-null float64
p1_dog                5512 non-null bool
p2                    5512 non-null object
p2_conf               5512 non-null float64
p2_dog                5512 non-null bool
p3                    5512 non-null object
p3_conf               5512 non-null float64
p3_dog                5512 non-null bool
retweet_count         5512 non-null int64
favorite_count        5512 non-null int64
dtypes: bool(3), float64(4), int64(5), object(10)
memory usage: 834.4+ KB
In [71]:
#summary statistics
df.describe()
Out[71]:
tweet_id rating_numerator rating_denominator img_num p1_conf p2_conf p3_conf retweet_count favorite_count
count 5.512000e+03 5512.000000 5512.0 5512.000000 5512.000000 5.512000e+03 5.512000e+03 5512.000000 5512.000000
mean 7.471101e+17 10.749289 10.0 1.214804 0.600940 1.342720e-01 6.058816e-02 2978.603048 9137.338897
std 6.866533e+16 1.901640 0.0 0.580590 0.273094 1.008740e-01 5.144500e-02 4454.470748 11634.849731
min 6.664188e+17 2.000000 10.0 1.000000 0.044333 1.011300e-08 1.740170e-10 23.000000 0.000000
25% 6.812424e+17 10.000000 10.0 1.000000 0.368660 5.171310e-02 1.543210e-02 748.000000 2187.000000
50% 7.316454e+17 11.000000 10.0 1.000000 0.599557 1.202710e-01 4.922740e-02 1659.500000 4578.000000
75% 8.054874e+17 12.000000 10.0 1.000000 0.868511 1.978190e-01 9.466370e-02 3636.000000 12041.000000
max 8.924206e+17 14.000000 10.0 4.000000 1.000000 4.880140e-01 2.734190e-01 56625.000000 107956.000000
In [72]:
df.rating_numerator.min(),df.rating_numerator.max()
Out[72]:
(2.0, 14.0)
In [73]:
df.rating_denominator.min(),df.rating_denominator.max()
Out[73]:
(10, 10)
In [74]:
df.dog_stage.value_counts()
Out[74]:
puppo      1378
doggo      1378
pupper     1378
floofer    1378
Name: dog_stage, dtype: int64
In [88]:
plt.figure(figsize=[10,5])
base_color = sb.color_palette()[0]
df.dog_stage.value_counts().plot(kind='bar',color=base_color)
plt.ylabel('count')
plt.title('Counts of dog stages Documented');
plt.savefig("dog_stages.png", bbox_inches='tight')
In [87]:
plt.figure(1)
plt.subplot(131)

df['p1'].value_counts(normalize=True).head(10).plot.bar(color=base_color,figsize=(24,6), fontsize = 15.0)
plt.title('p1 - Algorithm Output', fontsize = 22.0)
plt.ylabel('Count %', fontsize = 20.0)

plt.subplot(132)
df['p2'].value_counts(normalize=True).head(10).plot.bar(color=base_color,figsize=(24,6), fontsize = 15.0)
plt.title('p2 - Algorithm Output', fontsize = 22.0)
plt.ylabel('Count %', fontsize = 20.0)

plt.subplot(133)
df['p3'].value_counts(normalize=True).head(10).plot.bar(color=base_color,figsize=(24,6), fontsize = 15.0)
plt.title('p3 - Algorithm Output', fontsize = 22.0)
plt.ylabel('Count %', fontsize = 20.0);
plt.suptitle('Top predicted Dog classes by Our 3 Algorithm',fontweight="bold", fontsize = 25.0)
plt.savefig("dogs_class.png", bbox_inches='tight')
In [77]:
sb.countplot(data=df[df.source != np.nan],x='source')
Out[77]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f73aef4eac8>
In [78]:
df.rating_denominator.shape
Out[78]:
(5512,)
In [79]:
df.retweet_count.shape
Out[79]:
(5512,)
In [89]:
plt.figure(figsize=[11,5])
plt.scatter(x='rating_numerator',y='retweet_count',data=df)
plt.xlabel('Rating')
plt.ylabel('Number of Retweets')
plt.savefig("scatter.png", bbox_inches='tight')

Findings for my analysis

  • It appeared that most of the rating were from iphone device
  • Also labrador_retriever was most predicted in our second and third algorithm.
  • four stages of dogs where documented.
  • the max numerator rating was 14

Limitation

  • more cleaning could been done in the name rows to make the names consistent.
  • the timestamp column can be explored further.
In [90]:
from subprocess import call
call(['python', '-m', 'nbconvert', 'wrangle_act.ipynb'])
Out[90]:
0
In [ ]: